From 40d65d962f42db4065db141fe0cc64ffdaba82cd Mon Sep 17 00:00:00 2001 From: Mechoid Date: Fri, 11 Dec 2020 16:16:47 -0800 Subject: [PATCH 01/28] Department and Round Goals --- code/datums/roundstats/_defines_local.dm | 7 ++ code/datums/roundstats/departmentgoal.dm | 99 +++++++++++++++++++ code/datums/roundstats/roundstats.dm | 57 +++++++++++ code/game/machinery/lightswitch.dm | 1 + code/game/machinery/vending.dm | 20 ++++ code/game/mecha/mecha.dm | 2 + code/modules/food/food/drinks.dm | 1 + code/modules/hydroponics/grown.dm | 5 +- code/modules/hydroponics/trays/tray.dm | 2 + code/modules/mining/mine_turfs.dm | 2 + .../mob/living/carbon/human/human_movement.dm | 1 + code/modules/organs/organ_external.dm | 2 + code/modules/recycling/disposal.dm | 3 +- code/modules/turbolift/turbolift.dm | 2 + vorestation.dme | 3 + 15 files changed, 204 insertions(+), 3 deletions(-) create mode 100644 code/datums/roundstats/_defines_local.dm create mode 100644 code/datums/roundstats/departmentgoal.dm create mode 100644 code/datums/roundstats/roundstats.dm diff --git a/code/datums/roundstats/_defines_local.dm b/code/datums/roundstats/_defines_local.dm new file mode 100644 index 00000000000..951d7118ff8 --- /dev/null +++ b/code/datums/roundstats/_defines_local.dm @@ -0,0 +1,7 @@ + +#define GOAL_GENERAL "Common Goal" +#define GOAL_MEDICAL "Medical Goal" +#define GOAL_SECURITY "Security Goal" +#define GOAL_ENGINEERING "Engineering Goal" +#define GOAL_CARGO "Cargo Goal" +#define GOAL_RESEARCH "Research Goal" diff --git a/code/datums/roundstats/departmentgoal.dm b/code/datums/roundstats/departmentgoal.dm new file mode 100644 index 00000000000..b0aa69784c6 --- /dev/null +++ b/code/datums/roundstats/departmentgoal.dm @@ -0,0 +1,99 @@ + +GLOBAL_LIST(department_goals) +GLOBAL_LIST(active_department_goals) + +/hook/startup/proc/initializeDepartmentGoals() + GLOB.department_goals = list(GOAL_GENERAL, GOAL_MEDICAL, GOAL_SECURITY, GOAL_ENGINEERING, GOAL_CARGO, GOAL_RESEARCH) + GLOB.active_department_goals = list(GOAL_GENERAL, GOAL_MEDICAL, GOAL_SECURITY, GOAL_ENGINEERING, GOAL_CARGO, GOAL_RESEARCH) + + for(var/category in GLOB.department_goals) + GLOB.department_goals[category] = list() + + for(var/subtype in subtypesof(/datum/goal)) + var/datum/goal/SG = new subtype() + + if(SG.name == "goal") + continue + + if(SG.category == category) + GLOB.department_goals[category] |= SG + + for(var/category in GLOB.active_department_goals) + GLOB.active_department_goals[category] = list() + var/list/cat_goals = GLOB.department_goals[category] + + var/goal_count = rand(2,4) + + for(var/count = 1 to goal_count) + var/datum/goal/G + + if(LAZYLEN(cat_goals)) + G = pick(cat_goals) + + if(G) + G.active_goal = TRUE + cat_goals -= G + + GLOB.active_department_goals[category] |= G + +/hook/roundend/proc/checkDepartmentGoals() + for(var/category in GLOB.active_department_goals) + var/list/cat_goals = GLOB.active_department_goals[category] + + to_world("[category]") + + if(!LAZYLEN(cat_goals)) + to_world("There were no assigned goals!") + + else + for(var/datum/goal/G in cat_goals) + var/success = G.check_completion() + to_world("[success ? "[G.name]" : "[G.name]"]") + to_world("[G.goal_text]") + +/datum/goal + var/name = "goal" + + var/goal_text = "Do nothing! Congratulations." + + var/active_goal = FALSE + + var/category = GOAL_GENERAL + +/datum/goal/proc/check_completion() + return FALSE + +/datum/goal/common + name = "goal" + + goal_text = "Congratulations, you still do nothing." + +/datum/goal/medical + name = "goal" + + goal_text = "Congratulations, you still do nothing." + category = GOAL_MEDICAL + +/datum/goal/security + name = "goal" + + goal_text = "Congratulations, you still do nothing." + category = GOAL_SECURITY + +/datum/goal/engineering + name = "goal" + + goal_text = "Congratulations, you still do nothing." + category = GOAL_ENGINEERING + +/datum/goal/cargo + name = "goal" + + goal_text = "Congratulations, you still do nothing." + category = GOAL_CARGO + +/datum/goal/research + name = "goal" + + goal_text = "Congratulations, you still do nothing." + category = GOAL_RESEARCH diff --git a/code/datums/roundstats/roundstats.dm b/code/datums/roundstats/roundstats.dm new file mode 100644 index 00000000000..c5ceb686a75 --- /dev/null +++ b/code/datums/roundstats/roundstats.dm @@ -0,0 +1,57 @@ + +/* + * lbnesquik - Github + * Provided massive components of this. Polaris PR #5720. + */ + +//This is for the round end stats system. + +//roundstat is used for easy finding of the variables, if you ever want to delete all of this, +//just search roundstat and you'll find everywhere this thing reaches into. +//It used to be bazinga but it only fly with microwaves. + +GLOBAL_VAR_INIT(cans_opened_roundstat, 0) +GLOBAL_VAR_INIT(lights_switched_on_roundstat, 0) +GLOBAL_VAR_INIT(turbo_lift_floors_moved_roundstat, 0) +GLOBAL_VAR_INIT(lost_limbs_shift_roundstat, 0) +GLOBAL_VAR_INIT(seed_planted_shift_roundstat, 0) +GLOBAL_VAR_INIT(step_taken_shift_roundstat, 0) +GLOBAL_VAR_INIT(destroyed_research_items_roundstat, 0) +GLOBAL_VAR_INIT(items_sold_shift_roundstat, 0) +GLOBAL_VAR_INIT(disposals_flush_shift_roundstat, 0) +GLOBAL_VAR_INIT(rocks_drilled_roundstat, 0) +GLOBAL_VAR_INIT(mech_destroyed_roundstat, 0) + +/hook/roundend/proc/RoundTrivia()//bazinga + var/list/valid_stats_list = list() //This is to be populated with the good shit + + if(GLOB.lost_limbs_shift_roundstat > 1) + valid_stats_list.Add("[GLOB.lost_limbs_shift_roundstat] limbs left their owners bodies this shift, oh no!") + else if(GLOB.destroyed_research_items_roundstat > 13) + valid_stats_list.Add("[GLOB.destroyed_research_items_roundstat] objects were destroyed in the name of Science! Keep it up!") + else if(GLOB.mech_destroyed_roundstat > 1) + valid_stats_list.Add("[GLOB.mech_destroyed_roundstat] mechs were destroyed this shift. What did you do?") + else if(GLOB.seed_planted_shift_roundstat > 20) + valid_stats_list.Add("[GLOB.seed_planted_shift_roundstat] were planted according to our sensors this shift.") + + if(GLOB.rocks_drilled_roundstat > 80) + valid_stats_list.Add("Our strong miners pulverized a whole [GLOB.rocks_drilled_roundstat] piles of pathetic rubble.") + else if(GLOB.items_sold_shift_roundstat > 15) + valid_stats_list.Add("The vending machines sold [GLOB.items_sold_shift_roundstat] items today.") + else if(GLOB.step_taken_shift_roundstat > 900) + valid_stats_list.Add("The employees walked a total of [GLOB.step_taken_shift_roundstat] steps for this shift! It should put them on the road to fitness!") + + if(GLOB.cans_opened_roundstat > 0) + valid_stats_list.Add("[GLOB.cans_opened_roundstat] cans were drank today!") + else if(GLOB.lights_switched_on_roundstat > 0) + valid_stats_list.Add("[GLOB.lights_switched_on_roundstat] light switches were flipped today!") + else if(GLOB.turbo_lift_floors_moved_roundstat > 20) + valid_stats_list.Add("The elevator moved up [GLOB.turbo_lift_floors_moved_roundstat] floors today!") + else if(GLOB.disposals_flush_shift_roundstat > 40) + valid_stats_list.Add("The disposal system flushed a whole [GLOB.disposals_flush_shift_roundstat] times for this shift. We should really invest in waste treatement.") + + if(LAZYLEN(valid_stats_list)) + to_world("Shift trivia!") + + for(var/body in valid_stats_list) + to_world("[body]") diff --git a/code/game/machinery/lightswitch.dm b/code/game/machinery/lightswitch.dm index a208e6eefd2..c078b854d0c 100644 --- a/code/game/machinery/lightswitch.dm +++ b/code/game/machinery/lightswitch.dm @@ -68,6 +68,7 @@ L.updateicon() area.power_change() + GLOB.lights_switched_on_roundstat++ /obj/machinery/light_switch/power_change() diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 4f3d532c279..6ef14394303 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -557,6 +557,7 @@ GLOBAL_LIST_EMPTY(vending_products) use_power(vend_power_usage) //actuators and stuff flick("[icon_state]-vend",src) +<<<<<<< HEAD addtimer(CALLBACK(src, .proc/delayed_vend, R, user), vend_delay) /obj/machinery/vending/proc/delayed_vend(datum/stored_item/vending_product/R, mob/user) @@ -572,6 +573,25 @@ GLOBAL_LIST_EMPTY(vending_products) vend_ready = 1 currently_vending = null SStgui.update_uis(src) +======= + spawn(vend_delay) + R.get_product(get_turf(src)) + if(has_logs) + do_logging(R, user, 1) + if(prob(1)) + sleep(3) + if(R.get_product(get_turf(src))) + visible_message("\The [src] clunks as it vends an additional item.") + playsound(src, "sound/[vending_sound]", 100, 1, 1) + + GLOB.items_sold_shift_roundstat++ + + status_message = "" + status_error = 0 + vend_ready = 1 + currently_vending = null + SSnanoui.update_uis(src) +>>>>>>> 2018d76... Department and Round Goals (#7369) /obj/machinery/vending/proc/do_logging(datum/stored_item/vending_product/R, mob/user, var/vending = 0) diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index e9e3397bba8..fc29b0cd041 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -321,6 +321,8 @@ if(smoke_possible) //Just making sure nothing is running. qdel(smoke_system) + GLOB.mech_destroyed_roundstat++ + QDEL_NULL(pr_int_temp_processor) QDEL_NULL(pr_inertial_movement) QDEL_NULL(pr_give_air) diff --git a/code/modules/food/food/drinks.dm b/code/modules/food/food/drinks.dm index 2723df7fe21..6f2462aae2d 100644 --- a/code/modules/food/food/drinks.dm +++ b/code/modules/food/food/drinks.dm @@ -43,6 +43,7 @@ /obj/item/weapon/reagent_containers/food/drinks/proc/open(mob/user) playsound(src,"canopen", rand(10,50), 1) + GLOB.cans_opened_roundstat++ to_chat(user, "You open [src] with an audible pop!") flags |= OPENCONTAINER diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 62350ff0cbf..b9f84f5ba27 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -17,10 +17,10 @@ /obj/item/weapon/reagent_containers/food/snacks/grown/Initialize(var/mapload, var/planttype) . = ..() - + if(!dried_type) dried_type = type - + pixel_x = rand(-5.0, 5) pixel_y = rand(-5.0, 5) @@ -287,6 +287,7 @@ if(seed.get_trait(TRAIT_SPREAD) > 0) to_chat(user, "You plant the [src.name].") new /obj/machinery/portable_atmospherics/hydroponics/soil/invisible(get_turf(user),src.seed) + GLOB.seed_planted_shift_roundstat++ qdel(src) return diff --git a/code/modules/hydroponics/trays/tray.dm b/code/modules/hydroponics/trays/tray.dm index 1ac41ce60f8..fba3f9ad99d 100644 --- a/code/modules/hydroponics/trays/tray.dm +++ b/code/modules/hydroponics/trays/tray.dm @@ -204,6 +204,8 @@ qdel(S) + GLOB.seed_planted_shift_roundstat++ + check_health() update_icon() diff --git a/code/modules/mining/mine_turfs.dm b/code/modules/mining/mine_turfs.dm index acb0d7dc296..7ad99a7a8de 100644 --- a/code/modules/mining/mine_turfs.dm +++ b/code/modules/mining/mine_turfs.dm @@ -556,6 +556,8 @@ turf/simulated/mineral/floor/light_corner for (var/i = 1 to mineral.result_amount - mined_ore) DropMineral() + GLOB.rocks_drilled_roundstat++ + //destroyed artifacts have weird, unpleasant effects //make sure to destroy them before changing the turf though if(artifact_find && artifact_fail) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index a6326263da0..3ac9edc0688 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -252,6 +252,7 @@ return var/S = pick(footstep_sounds) + GLOB.step_taken_shift_roundstat++ if(!S) return // Play every 20 steps while walking, for the sneak diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index c9617afe11b..ab8a91f721d 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -856,6 +856,8 @@ Note that amputating the affected organ does in fact remove the infection from t else if(disintegrate == DROPLIMB_EDGE && nonsolid) //VOREStation Add End disintegrate = DROPLIMB_BLUNT //splut + GLOB.lost_limbs_shift_roundstat++ + switch(disintegrate) if(DROPLIMB_EDGE) if(!clean) diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 1d46e16ce52..6cd32ccff40 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -31,7 +31,7 @@ // find the attached trunk (if present) and init gas resvr. /obj/machinery/disposal/Initialize() . = ..() - + trunk = locate() in loc if(!trunk) mode = 0 @@ -481,6 +481,7 @@ playsound(src, 'sound/machines/disposalflush.ogg', 50, 0, 0) last_sound = world.time sleep(5) // wait for animation to finish + GLOB.disposals_flush_shift_roundstat++ H.init(src, air_contents) // copy the contents of disposer to holder diff --git a/code/modules/turbolift/turbolift.dm b/code/modules/turbolift/turbolift.dm index cc2739d0283..25a5f70601f 100644 --- a/code/modules/turbolift/turbolift.dm +++ b/code/modules/turbolift/turbolift.dm @@ -164,6 +164,8 @@ doors_closing = 0 // The doors weren't open, so they are done closing + GLOB.turbo_lift_floors_moved_roundstat++ + var/area/turbolift/origin = locate(current_floor.area_ref) if(target_floor == current_floor) diff --git a/vorestation.dme b/vorestation.dme index e0aceda1938..95d654f935a 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -409,6 +409,9 @@ #include "code\datums\repositories\decls.dm" #include "code\datums\repositories\repository.dm" #include "code\datums\repositories\unique.dm" +#include "code\datums\roundstats\_defines_local.dm" +#include "code\datums\roundstats\departmentgoal.dm" +#include "code\datums\roundstats\roundstats.dm" #include "code\datums\supplypacks\atmospherics.dm" #include "code\datums\supplypacks\contraband.dm" #include "code\datums\supplypacks\contraband_vr.dm" From ecb68fe635b93df7adbff1d99c7b363d25d3534c Mon Sep 17 00:00:00 2001 From: Verkister Date: Thu, 11 Feb 2021 13:31:56 +0200 Subject: [PATCH 02/28] Update vending.dm --- code/game/machinery/vending.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 6ef14394303..73cd0fca87f 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -557,7 +557,6 @@ GLOBAL_LIST_EMPTY(vending_products) use_power(vend_power_usage) //actuators and stuff flick("[icon_state]-vend",src) -<<<<<<< HEAD addtimer(CALLBACK(src, .proc/delayed_vend, R, user), vend_delay) /obj/machinery/vending/proc/delayed_vend(datum/stored_item/vending_product/R, mob/user) @@ -573,7 +572,6 @@ GLOBAL_LIST_EMPTY(vending_products) vend_ready = 1 currently_vending = null SStgui.update_uis(src) -======= spawn(vend_delay) R.get_product(get_turf(src)) if(has_logs) @@ -590,8 +588,7 @@ GLOBAL_LIST_EMPTY(vending_products) status_error = 0 vend_ready = 1 currently_vending = null - SSnanoui.update_uis(src) ->>>>>>> 2018d76... Department and Round Goals (#7369) + SStgui.update_uis(src) /obj/machinery/vending/proc/do_logging(datum/stored_item/vending_product/R, mob/user, var/vending = 0) From 6a163227e5e0b0dac82a56e3c6cdc60140317e82 Mon Sep 17 00:00:00 2001 From: Novacat <35587478+Novacat@users.noreply.github.com> Date: Sun, 21 Feb 2021 16:37:51 -0500 Subject: [PATCH 03/28] Update vending.dm --- code/game/machinery/vending.dm | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 73cd0fca87f..58107d9d0b4 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -572,24 +572,7 @@ GLOBAL_LIST_EMPTY(vending_products) vend_ready = 1 currently_vending = null SStgui.update_uis(src) - spawn(vend_delay) - R.get_product(get_turf(src)) - if(has_logs) - do_logging(R, user, 1) - if(prob(1)) - sleep(3) - if(R.get_product(get_turf(src))) - visible_message("\The [src] clunks as it vends an additional item.") - playsound(src, "sound/[vending_sound]", 100, 1, 1) - - GLOB.items_sold_shift_roundstat++ - - status_message = "" - status_error = 0 - vend_ready = 1 - currently_vending = null - SStgui.update_uis(src) - + GLOB.items_sold_shift_roundstat++ /obj/machinery/vending/proc/do_logging(datum/stored_item/vending_product/R, mob/user, var/vending = 0) if(user.GetIdCard()) From 18c2c70fcc31e38e7a4970bc74d276040d5aaf6d Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 21 Feb 2021 21:37:40 -0500 Subject: [PATCH 04/28] Moves the Toilet Destination Moves the toilet destination to trash pit as per request of head staff. --- maps/tether/tether-01-surface1.dmm | 44 ++++++++++++++++--- maps/tether/tether-02-surface2.dmm | 70 ++++++++---------------------- 2 files changed, 56 insertions(+), 58 deletions(-) diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index 3e77be18624..e6111adc244 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -4015,6 +4015,9 @@ name = "north bump"; pixel_y = 28 }, +/mob/living/simple_mob/vore/aggressive/rat{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + }, /turf/simulated/floor/plating, /area/maintenance/lower/trash_pit) "agR" = ( @@ -6865,6 +6868,15 @@ /obj/structure/railing{ dir = 4 }, +/obj/structure/disposalpipe/broken, +/obj/effect/floor_decal/techfloor/hole{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/obj/effect/decal/cleanable/filth, +/obj/effect/landmark/teleplumb_exit, /turf/simulated/floor/plating, /area/maintenance/lower/trash_pit) "alE" = ( @@ -7782,6 +7794,11 @@ /obj/structure/cable{ icon_state = "1-4" }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, /turf/simulated/floor/plating, /area/maintenance/lower/trash_pit) "ang" = ( @@ -31969,7 +31986,6 @@ /turf/simulated/floor/tiled/freezer, /area/tether/surfacebase/security/brig/bathroom) "emK" = ( -/mob/living/simple_mob/animal/passive/mimepet, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -31978,6 +31994,7 @@ d2 = 2; icon_state = "1-2" }, +/mob/living/simple_mob/animal/passive/mimepet, /turf/simulated/floor/carpet/bcarpet, /area/tether/surfacebase/funny/mimeoffice) "eow" = ( @@ -32191,6 +32208,10 @@ dir = 10 }, /area/looking_glass/lg_1) +"fgm" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall, +/area/tether/surfacebase/funny/mimeoffice) "fiP" = ( /obj/machinery/door/airlock/engineering{ name = "Civilian West Substation"; @@ -32314,6 +32335,15 @@ /obj/machinery/door/firedoor, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) +"fDO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) "fFb" = ( /obj/machinery/fitness/punching_bag/clown, /turf/simulated/floor/plating, @@ -37629,6 +37659,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/hallway) +"xik" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall, +/area/maintenance/lower/trash_pit) "xnn" = ( /obj/machinery/holoposter, /turf/simulated/wall, @@ -53019,7 +53053,7 @@ ahq ajP akY anq -aaU +xik gnH aaU aaU @@ -53161,7 +53195,7 @@ ahr ajR alu anr -abJ +fDO abM abJ abJ @@ -53303,7 +53337,7 @@ ahz ajZ alD anL -lry +fgm ruj lry lry @@ -53585,7 +53619,7 @@ bbj aaU aaU aaU -aaU +xik aBo lry tHb diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index 090df2d2c00..6ef5eb7d0fc 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -31382,13 +31382,6 @@ /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"bhJ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/tether/surfacebase/fish_farm) "bhK" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -34202,14 +34195,6 @@ /obj/machinery/door/airlock/maintenance/medical, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/medical/breakroom) -"bpL" = ( -/obj/effect/decal/cleanable/filth, -/obj/item/weapon/bone/skull, -/mob/living/simple_mob/vore/aggressive/rat{ - ai_holder_type = /datum/ai_holder/simple_mob/retaliate - }, -/turf/simulated/floor/water/indoors, -/area/tether/surfacebase/fish_farm) "bpO" = ( /obj/structure/railing{ dir = 4 @@ -34380,14 +34365,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"fFF" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/plating, -/area/tether/surfacebase/fish_farm) "fIS" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/glass, @@ -34399,14 +34376,6 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/fish_farm) -"fWy" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/plating, -/area/tether/surfacebase/fish_farm) "glx" = ( /obj/structure/cable/orange{ d1 = 16; @@ -34665,15 +34634,15 @@ /obj/item/weapon/flame/lighter/zippo/moff, /turf/simulated/floor/plating, /area/tether/surfacebase/funny/hideyhole) -"sKR" = ( -/obj/structure/disposalpipe/broken, -/obj/effect/decal/cleanable/filth, -/obj/effect/landmark/teleplumb_exit, -/turf/simulated/floor/water/indoors, +"swg" = ( +/obj/structure/railing, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, /area/tether/surfacebase/fish_farm) "sLx" = ( -/obj/effect/decal/cleanable/filth, -/obj/item/weapon/bone, /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -34765,7 +34734,6 @@ dir = 8 }, /obj/structure/catwalk, -/obj/effect/decal/cleanable/filth, /turf/simulated/floor/plating, /area/tether/surfacebase/fish_farm) "uHy" = ( @@ -34798,10 +34766,6 @@ }, /turf/simulated/floor/water/indoors, /area/tether/surfacebase/fish_farm) -"vje" = ( -/obj/structure/sign/biohazard, -/turf/simulated/wall, -/area/tether/surfacebase/fish_farm) "voE" = ( /obj/effect/floor_decal/corner_techfloor_grid, /obj/effect/floor_decal/corner_techfloor_grid{ @@ -40168,9 +40132,9 @@ adt adt adt azs -awN -bhJ -fFF +ayw +ayw +ayw azs adt adt @@ -40310,10 +40274,10 @@ adt adt adt azs -axO -bpL -sKR -vje +ayw +ayw +ayw +azs adt adt adt @@ -40452,7 +40416,7 @@ adt adt adt azs -axO +swg sLx uFL azs @@ -40881,7 +40845,7 @@ azs awN flk gGm -vje +azs aBd aCn aDk @@ -41022,7 +40986,7 @@ adt azs axO viY -fWy +bOW azs azq aAw From e1cc8eb65b7a04d0c6726dc267a0d8207e2acd01 Mon Sep 17 00:00:00 2001 From: NanoMap Generation Date: Mon, 22 Feb 2021 03:03:00 +0000 Subject: [PATCH 05/28] NanoMap Auto-Update (Mon Feb 22 03:03:00 UTC 2021) --- icons/_nanomaps/tether_nanomap_z2.png | Bin 744252 -> 744544 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/_nanomaps/tether_nanomap_z2.png b/icons/_nanomaps/tether_nanomap_z2.png index 320c41596aecb054192c44237a468f42a42d8255..f9beaab7c01de3e9cbf5a7bde49604f1bdfd43f5 100644 GIT binary patch delta 486732 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

Vn))Po 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�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


%R>sr(NI6*F1~_%nqqDyNl6`u^->~?G$R4c&__k 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ÝmRh$aUXUg_4M;(OH>*bs_0rdEq1)3*?3Ke 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 z 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


$yovAq+NGKJDxs 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

Food for Dummies 2

Penned by Ali Big

Hello Newbie, congratz on deciding to make food! This guide assumes you know absolutely nothing, so fret not, the information here will help you prepare food for your hungry crewmates!

-

Workspace prep:

+

Workspace prep:

This step is simple: merely go to the Grill, Oven, and Fryer and turn everything on so you do not need to wait for them to warm up later; they won’t start a fire unless food is left in them unchecked. It is also highly suggested to lay out at least a few Measuring Cups on the counters for ease of use. -

Basic ingredient prep:

+

Basic ingredient prep:

In the lockers and fridges, you have all your needed supplies for this guide, so look through them and familiarize yourself! This guide will only use ingredients you already have access to, so don't worry about missing items!

Part 1: How to Create Various Essential Ingredients with What You Have

-

Dough Creation:

+

Dough Creation:

The basis for a large quantity of meals. Simply take an Egg, crack it into a Beaker or Measuring Cup, and then add 10 units of Flour to create Dough. -

Dough Creation part 2:

+

Dough Creation part 2:

With Dough, you can make a wide variety of base ingredients. Flattening it with a Rolling Pin makes Flat Dough. Flat Dough can be cooked in a Microwave for Flatbread, or if one adds Water and Flour in with the Flat Dough in the Microwave you get a Tortilla. Water can be obtained by filling a Cup at the Sink or Soda Machine. -

Dough Creation Part 3:

+

Dough Creation Part 3:

Alternatively, Flat Dough can be cut with a Knife to make Dough Slices, and those can be cut to make Spaghetti. -

Cheese Creation:

+

Cheese Creation:

A common topping. Take a bottle of Universal Enzyme, put it in a Beaker or Measuring Cup, and add Milk until a Cheese Wheel pops out. Then cut the Cheese Wheel with a Knife to make Cheese Wedges, all recipes use Wedges not the full Wheel.

Tofu Creation:

Same as cheese, but with Soymilk! -

Meatball Creation:

+

Meatball Creation:

Mix Animal protein and Flour, to create Animal Protein grind down some Meat in the grinder, then remove the beaker and add Flour. -

Meat Uses:

+

Meat Uses:

Full pieces of Meat can be cut for Raw Cutlets, which can be cut once more to make Raw Bacon. Though be sure not to cut all of your meat, plenty of recipes need a full uncut piece!

Part 2: Putting It All Together

Now that you know the fundamentals of how to make the base ingredients, here are some fairly easy recipes to put them together into something enjoyable for the crew.

-

Warning: recipes are upscale able, so you can add multiple of the same ingredients in the same ratio to cook lots of food at once!

+

Warning: recipes are upscale able, so you can add multiple of the same ingredients in the same ratio to cook lots of food at once!

Warning: do not try and cook multiple recipes at once as it is very likely it will default to a different recipe or will just cook the one and just "grill, bake, etc." the rest of the ingredients.

-

Burgers:

+

Burgers:

The cornerstone of basic food: to prepare these, microwave a piece of Dough to get a bun and grab a piece of Meat. Open the Grill, remove the Rack, and add both Bun and Meat to the Rack. Then, place the Rack back into the Grill to cook and remove it once finished. If you feel fancy, you can add cheese afterwards for a cheeseburger. -

Meat Pie:

+

Meat Pie:

Flat Dough and Meat in an Oven Pan, same way you use the Grill; take the Pan out, put the ingredients in, and place it back to cook. Simple, but very good looking and tasty! -

Burritos:

+

Burritos:

Burritos: A personal favorite due to flexibility of options: Use a Tortilla as a base for all of these. For a Chili one, add 2 Meatballs and 1 Space Spice (found near the Flour) to the Microwave; very simple and filling! Add a Cheese Wedge instead of the spice to make a queso burrito. For a Breakfast Wrap, add a whole Egg, Cooked Bacon (Raw Bacon cooked in the Microwave), and Cheese in with the Tortilla. For Vegan Burritos, just cook a Tortilla and Tofu together in the Microwave. -

Tacos:

+

Tacos:

Use a tortilla then 1 cooked Cutlet, and a Cheese Wedge. Very easy to mass produce, great in a pinch! -

Cheesy Nachos:

+

Cheesy Nachos:

Tortilla, Cheese and 1 unit of Salt in the microwave, the perfect Finger Food! -

Spaghetti:

+

Spaghetti:

Without Tomato’s from Botany it's not going to be the flashiest, but one can make Boiled Spaghetti with Spaghetti and Water in the Microwave. Kitsune Udon can be made with Spaghetti, Egg Yolk (crack egg in beaker then add to microwave), and Tofu. Spaghetti and Meatballs can be made by doing the Boiled Spaghetti Recipe and adding 2 Meatballs; adding 4 Meatballs into the initial mix makes Spesslaw. Lastly, Spaghetti, Milk, and Cheese in the Oven makes Macaroni and Cheese.

Steak:

For the pure meat eaters, just add Meat, 1 Salt, and 1 Pepper into the grill for them, and try not to cry as they use up all your Meat quickly. (There's a second Meat Locker in the freezer room if you do run out!) -

Donk Pockets:

+

Donk Pockets:

Dough and Meatball in the Microwave, though we already have plenty lying around the station. -

Eggs:

+

Eggs:

Fried Egg, 1 Egg 1 Salt, 1 Pepper in a Microwave. Bacon and Eggs if you combine Cooked Bacon and Fried Egg in the Microwave. Great way to start the shift!

Part 3: Final Notes

-

These recipes only scratch the surface, but it's all things that can be done with what is pre-provided. If you have a partner in Botany, feel free to request more meat or any other supplies to try new recipes!

+

These recipes only scratch the surface, but it's all things that can be done with what is pre-provided. If you have a partner in Botany, feel free to request more meat or any other supplies to try new recipes!

The Fryer, CondiMaster3000, and other nearby devices have been deliberately left out of this guide; as you get more advanced feel free to experiment with them, though be careful with the Fryer especially as it's the #1 source of fires for learning chefs, myself included. The one other machine that is worth understanding is the Gibber in the freezer room. If you are delivered fish or such they can be gibbed for extra Meat, though you may need to butcher the parts with a Knife afterwards to get usable Meat! Though if the meat is purple or comes from Koi or Spacecarp do not directly serve it to crew! It contains toxins that are better taken care of by other departments.

Some wonderful websites share recipes and tips for learning chefs on the Extranet! Look on your PDA or preferred device at https://wiki.vore-station.net/Guide_to_Food_and_Drink and https://vore-station.net/infodump/recipes_food.html for further tips, though do note the latter is more accurate in regard to recipes. Happy cooking!

Pro Tips:

-

((The Food Bags in the Chef's Closet are great for moving a lot of food at once!))

+

((The Food Bags in the Chef's Closet are great for moving a lot of food at once!))

((Stay out of the Freezer if you're Cold Blooded!))

((The websites linked above are also on our stations wiki. Which is always in need of helping heads to fix it up. The recipes listed on the web link may not be fully accurate so please don't be afraid to pop into the discord wiki channel and lend a hand!))

"} -//accurate as of 2/17/21 -/obj/item/weapon/book/manual//bar_guide +//accurate as of 2/23/21 +/obj/item/weapon/book/manual/bar_guide name = "How to Alcohol (And other Drinks)" desc = "A helpful guide to the world of barkeeping." icon_state = "bar-guide" @@ -213,7 +213,7 @@ 1 part Beer, 2 parts Ale

Whiskey Cola:

2 parts Whiskey, 1 part Space Cola -

Binman Bliss: +

Binman Bliss:

1 part Sake, 1 part Tequila

High Alcohol

From 7d2ddfb42252bb60899c0d6a571a197a3f5c9c91 Mon Sep 17 00:00:00 2001 From: Novacat <35587478+Novacat@users.noreply.github.com> Date: Tue, 23 Feb 2021 19:32:35 -0500 Subject: [PATCH 16/28] Update ticker.dm --- code/controllers/subsystems/ticker.dm | 8 -------- 1 file changed, 8 deletions(-) diff --git a/code/controllers/subsystems/ticker.dm b/code/controllers/subsystems/ticker.dm index 20be2138c1b..750f6807cca 100644 --- a/code/controllers/subsystems/ticker.dm +++ b/code/controllers/subsystems/ticker.dm @@ -183,14 +183,6 @@ var/global/datum/controller/subsystem/ticker/ticker if(adm["total"] == 0) send2adminirc("A round has started with no admins online.") -<<<<<<< HEAD -/* supply_controller.process() //Start the supply shuttle regenerating points -- TLE // handled in scheduler - master_controller.process() //Start master_controller.process() - lighting_controller.process() //Start processing DynamicAreaLighting updates - */ - -======= ->>>>>>> 6cb0471... Merge pull request #7917 from MistakeNot4892/psched current_state = GAME_STATE_PLAYING Master.SetRunLevel(RUNLEVEL_GAME) From 0aa5b11bea7bf6c2ca256eecfa36460e56b5c7dc Mon Sep 17 00:00:00 2001 From: Novacat <35587478+Novacat@users.noreply.github.com> Date: Tue, 23 Feb 2021 19:33:27 -0500 Subject: [PATCH 17/28] Update world.dm --- code/game/world.dm | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/code/game/world.dm b/code/game/world.dm index 7c05a28ddd7..ac0e1034787 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -57,17 +57,8 @@ // Create robolimbs for chargen. populate_robolimb_list() -<<<<<<< HEAD - //Must be done now, otherwise ZAS zones and lighting overlays need to be recreated. - //createRandomZlevel() //VOREStation Removal: Deprecated - - master_controller = new /datum/controller/game_controller() - - Master.Initialize(10, FALSE, TRUE) -======= master_controller = new /datum/controller/game_controller() Master.Initialize(10, FALSE) ->>>>>>> 6cb0471... Merge pull request #7917 from MistakeNot4892/psched spawn(1) master_controller.setup() @@ -413,10 +404,6 @@ var/world_topic_spam_protect_time = world.timeofday to_world("Rebooting world immediately due to host request") else Master.Shutdown() //run SS shutdowns -<<<<<<< HEAD - //processScheduler.stop() //VOREStation Removal -======= ->>>>>>> 6cb0471... Merge pull request #7917 from MistakeNot4892/psched for(var/client/C in GLOB.clients) if(config.server) //if you set a server location in config.txt, it sends you there instead of trying to reconnect to the same world address. -- NeoFite C << link("byond://[config.server]") From 66e5059dc806228e1be5695f8d28305e6d327b83 Mon Sep 17 00:00:00 2001 From: Heroman Date: Thu, 25 Feb 2021 06:40:20 +1000 Subject: [PATCH 18/28] Adds wurmwoad to the seed dispensers. --- code/modules/clothing/under/jobs/security_vr.dm | 0 code/modules/hydroponics/seed_storage_vr.dm | 2 ++ vorestation.dme | 1 - 3 files changed, 2 insertions(+), 1 deletion(-) delete mode 100644 code/modules/clothing/under/jobs/security_vr.dm diff --git a/code/modules/clothing/under/jobs/security_vr.dm b/code/modules/clothing/under/jobs/security_vr.dm deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/code/modules/hydroponics/seed_storage_vr.dm b/code/modules/hydroponics/seed_storage_vr.dm index 1f3ed72b7af..5df34592c65 100644 --- a/code/modules/hydroponics/seed_storage_vr.dm +++ b/code/modules/hydroponics/seed_storage_vr.dm @@ -44,6 +44,7 @@ /obj/item/seeds/watermelonseed = 3, /obj/item/seeds/wheatseed = 3, /obj/item/seeds/whitebeetseed = 3, + /obj/item/seeds/wurmwoad = 3, /obj/item/seeds/shrinkshroom = 3, /obj/item/seeds/megashroom = 3) @@ -101,5 +102,6 @@ /obj/item/seeds/watermelonseed = 3, /obj/item/seeds/wheatseed = 3, /obj/item/seeds/whitebeetseed = 3, + /obj/item/seeds/wurmwoad = 3, /obj/item/seeds/shrinkshroom = 3, /obj/item/seeds/megashroom = 3) diff --git a/vorestation.dme b/vorestation.dme index 1e480dc8dc3..bc217276638 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -2017,7 +2017,6 @@ #include "code\modules\clothing\under\jobs\engineering.dm" #include "code\modules\clothing\under\jobs\medsci.dm" #include "code\modules\clothing\under\jobs\security.dm" -#include "code\modules\clothing\under\jobs\security_vr.dm" #include "code\modules\clothing\under\xenos\seromi.dm" #include "code\modules\clothing\under\xenos\vox.dm" #include "code\modules\customitems\item_spawning.dm" From a8576eef4de01a204b5f515e128624e97f620203 Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Wed, 24 Feb 2021 16:38:55 -0500 Subject: [PATCH 19/28] Re-add src. Will be porting upstream. --- code/modules/mob/living/silicon/robot/robot_items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/robot_items.dm b/code/modules/mob/living/silicon/robot/robot_items.dm index f3ffc2b9be9..d45d35cef33 100644 --- a/code/modules/mob/living/silicon/robot/robot_items.dm +++ b/code/modules/mob/living/silicon/robot/robot_items.dm @@ -171,7 +171,7 @@ else if(T.dead) //It's probably dead otherwise. T.remove_dead(user) else - to_chat(user, "Harvesting \a [target] is not the purpose of this tool. The harvester is for plants being grown.") + to_chat(user, "Harvesting \a [target] is not the purpose of this tool. [src] is for plants being grown.") // A special tray for the service droid. Allow droid to pick up and drop items as if they were using the tray normally // Click on table to unload, click on item to load. Otherwise works identically to a tray. From 3aa6d55803c410ba0bba4234e97576640b5566c4 Mon Sep 17 00:00:00 2001 From: Heroman Date: Thu, 25 Feb 2021 07:53:41 +1000 Subject: [PATCH 20/28] Limits the unlimitedness --- .../modules/mob/living/silicon/robot/drone/drone_console.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/drone/drone_console.dm b/code/modules/mob/living/silicon/robot/drone/drone_console.dm index 2fd79b49923..138b1610f57 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_console.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_console.dm @@ -36,10 +36,10 @@ data["drones"] = list() for(var/mob/living/silicon/robot/drone/D in mob_list) - /* //VOREStation Removal - multiz lol - if(D.z != z) + //VOREStation Edit - multiz lol + if(!(D.z in using_map.get_map_levels(z, TRUE, 0))) continue - */ //VOREStation Removal - multiz lol + //VOREStation Edit - multiz lol if(D.foreign_droid) continue From b550f0399c0227314ea4d2e1f77c0bb0718934d5 Mon Sep 17 00:00:00 2001 From: Killian <49700375+VarkaSelyn@users.noreply.github.com> Date: Wed, 24 Feb 2021 22:59:46 +0000 Subject: [PATCH 21/28] enverbulate! --- code/modules/clothing/spacesuits/void/ert.dm | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/code/modules/clothing/spacesuits/void/ert.dm b/code/modules/clothing/spacesuits/void/ert.dm index 023bec9388f..4825e96ddf3 100644 --- a/code/modules/clothing/spacesuits/void/ert.dm +++ b/code/modules/clothing/spacesuits/void/ert.dm @@ -131,7 +131,29 @@ siemens_coefficient = 0.5 icon = 'icons/obj/clothing/hats_vr.dmi' enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_AUGMENTED) + var/away_planes = null plane_slots = list(slot_head) + var/hud_active = 1 + var/activation_sound = 'sound/items/nif_click.ogg' + +/obj/item/clothing/head/helmet/space/void/responseteam/verb/toggle() + set category = "Object" + set name = "Toggle Mark 7 Suit HUD" + set src in usr + + if(usr.canmove && !usr.stat && !usr.restrained()) + if(src.hud_active) + away_planes = enables_planes + enables_planes = null + to_chat(usr, "You disable the inbuilt heads-up display.") + hud_active = 0 + else + enables_planes = away_planes + away_planes = null + to_chat(usr, "You enable the inbuilt heads-up display.") + hud_active = 1 + usr << activation_sound + usr.recalculate_vis() /obj/item/clothing/head/helmet/space/void/responseteam/command name = "Mark VII-C Emergency Response Team Commander Helmet" From 303efa247beb491525809dc511c15497319c0842 Mon Sep 17 00:00:00 2001 From: Voidalynx Date: Thu, 25 Feb 2021 02:15:48 +0000 Subject: [PATCH 22/28] Whitelist addition --- config/alienwhitelist.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/config/alienwhitelist.txt b/config/alienwhitelist.txt index 37bd80da8ac..1041c355175 100644 --- a/config/alienwhitelist.txt +++ b/config/alienwhitelist.txt @@ -82,6 +82,7 @@ varonis - Xenochimera verkister - Xenochimera verysoft - Black-Eyed Shadekin vitoras - Protean +voidalynx - Black-Eyed Shadekin voidalynx - Protean wickedtemp - Shadekin Empathy xioen - Diona From cf3bba528584c272eee579b2f51b600f3ef0ef33 Mon Sep 17 00:00:00 2001 From: Heroman Date: Thu, 25 Feb 2021 16:06:22 +1000 Subject: [PATCH 23/28] Updates year of linoleum --- code/game/turfs/flooring/flooring.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/turfs/flooring/flooring.dm b/code/game/turfs/flooring/flooring.dm index 31d39aa47d8..3ef89064f77 100644 --- a/code/game/turfs/flooring/flooring.dm +++ b/code/game/turfs/flooring/flooring.dm @@ -148,7 +148,7 @@ var/list/flooring_types icon_base = "grass_sif" build_type = /obj/item/stack/tile/grass/sif has_base_range = 1 - + /decl/flooring/grass/sif/forest name = "thick growth" desc = "A natural moss that has adapted to the sheer cold climate." @@ -379,7 +379,7 @@ var/list/flooring_types /decl/flooring/linoleum name = "linoleum" - desc = "It's like the 2390's all over again." + desc = "It's like the 2090's all over again." // VOREStation Lore Edit - we're not past 2390's yet icon = 'icons/turf/flooring/linoleum.dmi' icon_base = "lino" can_paint = 1 From b3c7746e9fa5156e15115538661afb5dc9d65a7b Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Thu, 25 Feb 2021 19:31:57 -0500 Subject: [PATCH 24/28] Moar Typo Fixy Fix a descstring for Pizza Voucher having "both" twice. Do tell me if this double was intentional, and will pass along to player who pointed this out to me. --- code/game/objects/items/pizza_voucher_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/pizza_voucher_vr.dm b/code/game/objects/items/pizza_voucher_vr.dm index 4c968b55ace..a4dad4720fc 100644 --- a/code/game/objects/items/pizza_voucher_vr.dm +++ b/code/game/objects/items/pizza_voucher_vr.dm @@ -12,7 +12,7 @@ var/list/descstrings = list("24/7 PIZZA PIE HEAVEN", "WE ALWAYS DELIVER!", "24-HOUR PIZZA PIE POWER!", - "TOMATO SAUCE, CHEESE, WE'VE BOTH BOTH OF THESE!", + "TOMATO SAUCE, CHEESE, WE'VE BOTH OF THESE!", "COOKED WITH LOVE INSIDE A BIG OVEN!", "WHEN YOU NEED A SLICE OF JOY IN YOUR LIFE!", "WHEN YOU NEED A DISK OF OVEN BAKED BLISS!", From acda75223ed7c74b05ab2889b39b2a883411143e Mon Sep 17 00:00:00 2001 From: Novacat <35587478+Novacat@users.noreply.github.com> Date: Fri, 26 Feb 2021 00:34:18 -0500 Subject: [PATCH 25/28] Revert "Moar Typo Fixy" --- code/game/objects/items/pizza_voucher_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/pizza_voucher_vr.dm b/code/game/objects/items/pizza_voucher_vr.dm index a4dad4720fc..4c968b55ace 100644 --- a/code/game/objects/items/pizza_voucher_vr.dm +++ b/code/game/objects/items/pizza_voucher_vr.dm @@ -12,7 +12,7 @@ var/list/descstrings = list("24/7 PIZZA PIE HEAVEN", "WE ALWAYS DELIVER!", "24-HOUR PIZZA PIE POWER!", - "TOMATO SAUCE, CHEESE, WE'VE BOTH OF THESE!", + "TOMATO SAUCE, CHEESE, WE'VE BOTH BOTH OF THESE!", "COOKED WITH LOVE INSIDE A BIG OVEN!", "WHEN YOU NEED A SLICE OF JOY IN YOUR LIFE!", "WHEN YOU NEED A DISK OF OVEN BAKED BLISS!", From 92d2920481f0c7847d4308a34b563e4286f945a8 Mon Sep 17 00:00:00 2001 From: Schnayy Date: Fri, 26 Feb 2021 09:06:39 -0600 Subject: [PATCH 26/28] Merge pull request #7924 from BillyBangles/timeforturtle Adds some tacticooler undershirts --- code/datums/underwear/undershirts.dm | 12 +++++++++++- icons/mob/human.dmi | Bin 46685 -> 48294 bytes 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/code/datums/underwear/undershirts.dm b/code/datums/underwear/undershirts.dm index 7da82fa5801..6b2cc3d10f6 100644 --- a/code/datums/underwear/undershirts.dm +++ b/code/datums/underwear/undershirts.dm @@ -186,4 +186,14 @@ /datum/category_item/underwear/undershirt/pinkblack_tshirt name = "Pink and Black T-Shirt" - icon_state = "pinkblack_tshirt" \ No newline at end of file + icon_state = "pinkblack_tshirt" + +/datum/category_item/underwear/undershirt/turtle + name = "Turtleneck" + icon_state = "turtleneck" + has_color = TRUE + +/datum/category_item/underwear/undershirt/sleevelessturtle + name = "Turtleneck, Sleeveless" + icon_state = "sleevelessturtle" + has_color = TRUE \ No newline at end of file diff --git a/icons/mob/human.dmi b/icons/mob/human.dmi index 62f8883880252caec00bc472634ea89983965bba..c7b0cc26b6c0a0e9b5f8b47c028ab944eff00235 100644 GIT binary patch delta 6150 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 delta 4528 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 AUjP6A From a455629e06d2fdc4417547a80dba4e91cb59d222 Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Sat, 27 Feb 2021 10:56:00 -0500 Subject: [PATCH 28/28] Fix Stairs objpath Title. Also removes random Xenobio sortjunction and random upward pipe in AI. :cl: maptweak - Fix Stairs objpath and removes standalones xenobio sortjunction,, AI upward pipe. /:cl: --- maps/offmap_vr/talon/talon1.dmm | 24 +- maps/tether/tether-01-surface1.dmm | 150 +- maps/tether/tether-02-surface2.dmm | 214 +- maps/tether/tether-03-surface3.dmm | 126478 +++++++++++++------------- maps/tether/tether-05-station1.dmm | 48 +- maps/tether/tether-06-station2.dmm | 85 +- 6 files changed, 63491 insertions(+), 63508 deletions(-) diff --git a/maps/offmap_vr/talon/talon1.dmm b/maps/offmap_vr/talon/talon1.dmm index ba71141c7db..5ff5ada9881 100644 --- a/maps/offmap_vr/talon/talon1.dmm +++ b/maps/offmap_vr/talon/talon1.dmm @@ -462,6 +462,10 @@ /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"bb" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "bc" = ( /obj/structure/catwalk, /obj/structure/handrail{ @@ -1553,6 +1557,10 @@ }, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/talon/deckone/medical) +"dh" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "dj" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/handcuffs, @@ -2227,10 +2235,6 @@ }, /turf/simulated/floor/tiled/eris/dark/cyancorner, /area/talon/deckone/starboard_solar) -"kE" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled/eris/steel, -/area/talon/deckone/central_hallway) "kG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -2554,10 +2558,6 @@ /obj/item/clothing/accessory/holster/waist, /turf/simulated/floor/tiled/eris/white/danger, /area/talon/deckone/armory) -"oe" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/eris/steel, -/area/talon/deckone/central_hallway) "oh" = ( /obj/effect/shuttle_landmark{ landmark_tag = "talon_aft"; @@ -15159,7 +15159,7 @@ Pg dH Bj Ae -kE +dh iT sz tr @@ -15566,7 +15566,7 @@ UP aM xK aM -oe +bb Nc YK YK @@ -16134,7 +16134,7 @@ gR aO nN aO -kE +dh DO yo yo @@ -16579,7 +16579,7 @@ kw fJ Bj Jw -oe +bb AU IW Zq diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index e6111adc244..f2f6d1fcd56 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -366,6 +366,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/medical/paramed) +"aaI" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) "aaJ" = ( /obj/structure/table/woodentable, /obj/item/weapon/folder/white, @@ -1418,6 +1422,11 @@ /obj/machinery/vending/loadout, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) +"acA" = ( +/obj/structure/railing, +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) "acB" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -1682,6 +1691,10 @@ /obj/machinery/camera/network/medbay, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) +"ada" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) "adb" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -1741,6 +1754,10 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/medical/mentalhealth) +"adg" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) "adh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -2086,6 +2103,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) +"adH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) "adI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -2990,9 +3014,12 @@ /turf/simulated/wall, /area/tether/surfacebase/medical/lowerhall) "aeV" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) "aeW" = ( /turf/simulated/wall, /area/storage/primary) @@ -6369,9 +6396,9 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_one) "akX" = ( -/obj/structure/stairs/north, +/obj/structure/stairs/spawner/north, /turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) +/area/rnd/hallway) "akY" = ( /obj/structure/railing{ dir = 8 @@ -6713,6 +6740,10 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/lower/first_west) +"alr" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled, +/area/engineering/atmos) "als" = ( /obj/effect/floor_decal/techfloor{ dir = 6 @@ -9251,7 +9282,7 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/xenoflora) "apw" = ( -/obj/structure/stairs/south, +/obj/structure/stairs/spawner/south, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_one) "apx" = ( @@ -9648,6 +9679,10 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) +"aqk" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) "aql" = ( /obj/structure/catwalk, /turf/simulated/floor/plating, @@ -10945,6 +10980,10 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) +"asw" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) "asx" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -11826,6 +11865,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/tether/surfacebase/tram) +"auf" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) "aug" = ( /obj/structure/cable/green{ d1 = 2; @@ -12168,6 +12211,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/solars) +"auI" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) "auK" = ( /turf/simulated/wall, /area/maintenance/lower/solars) @@ -15165,10 +15212,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"ayY" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) "ayZ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -15574,11 +15617,6 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/centralstairwell) -"azF" = ( -/obj/structure/stairs/east, -/obj/structure/railing, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) "azG" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'CRUSH WARNING'."; @@ -17918,10 +17956,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled/monotile, /area/rnd/hallway) -"aDL" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "aDM" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -21727,10 +21761,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aKq" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/engineering/atmos) "aKr" = ( /obj/structure/railing, /obj/effect/floor_decal/borderfloor{ @@ -21805,10 +21835,6 @@ /obj/item/weapon/beach_ball/holoball, /turf/simulated/floor/plating, /area/maintenance/lower/research) -"aKA" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) "aKB" = ( /obj/structure/railing{ dir = 8 @@ -29330,10 +29356,6 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/plating, /area/crew_quarters/sleep/maintDorm1) -"aZv" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) "aZw" = ( /obj/effect/decal/cleanable/blood, /turf/simulated/floor/plating, @@ -29539,14 +29561,6 @@ /obj/item/weapon/bedsheet/mimedouble, /turf/simulated/floor/plating, /area/crew_quarters/sleep/maintDorm1) -"baF" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baG" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) "baK" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -36042,13 +36056,6 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/funny/mimeoffice) -"rww" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) "rxq" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -37537,13 +37544,6 @@ /obj/random/mre, /turf/simulated/floor/carpet/bcarpet, /area/tether/surfacebase/funny/mimeoffice) -"wRe" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) "wUW" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -41116,7 +41116,7 @@ ajO adK aep adK -aeV +adg aeo afq adK @@ -42334,9 +42334,9 @@ aad aad aad baq -baF -baF -baF +auf +auf +auf baq aad aad @@ -43385,7 +43385,7 @@ akr akx akE bdH -akX +ada akN aly alN @@ -44890,9 +44890,9 @@ aad aad aad baq -baG -baG -baG +auI +auI +auI baq aad aad @@ -45660,7 +45660,7 @@ vSS tTC iqO xVX -rww +adH odn aah aah @@ -45696,7 +45696,7 @@ abv abm ajW aDf -aDL +akX aDg aFe aDg @@ -45802,7 +45802,7 @@ mvM fLB dMu jIc -wRe +aeV odn aah aah @@ -45838,7 +45838,7 @@ abv abm ajX aDf -aDL +akX aDg aFe aDg @@ -48120,7 +48120,7 @@ aHv aIf aIN aIh -aKq +alr aJI aLC acv @@ -48262,7 +48262,7 @@ aHv aCl aIO aIh -aKq +alr aJI aLC aMm @@ -48436,7 +48436,7 @@ aHx aTZ aTZ aTZ -aZv +asw aVn aah aah @@ -48578,7 +48578,7 @@ aYm aHy aYF aTZ -aZv +asw aVn aah aah @@ -49966,7 +49966,7 @@ aBL aBb aCy aIh -aKq +alr aJI aJI aMs @@ -50108,7 +50108,7 @@ aBQ aCp aCz aIh -aKq +alr aJI aJI aMs @@ -51102,7 +51102,7 @@ agM ayG aJd ayG -aKA +aqk aLg aLM aMx @@ -51244,7 +51244,7 @@ agM aeM aJd ayG -aKA +aqk aLg aLM aLM @@ -52893,8 +52893,8 @@ auq ady ayd aff -ayY -azF +aaI +acA axP aeF axK diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index 6ef5eb7d0fc..0292058ef2d 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -1014,6 +1014,12 @@ dir = 8 }, /turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"abv" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/uppernorthstairwell{ name = "\improper North Medical Stairwell" }) @@ -1112,6 +1118,13 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/recoveryward) +"abC" = ( +/obj/structure/railing, +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) "abD" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -1371,11 +1384,12 @@ name = "\improper North Medical Stairwell" }) "abW" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/middlehall) "abX" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -1654,12 +1668,10 @@ /turf/simulated/floor/plating, /area/tether/surfacebase/medical/resleeving) "acw" = ( -/obj/structure/stairs/east, /obj/structure/railing, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/middlehall) "acx" = ( /obj/machinery/vending/medical{ dir = 8 @@ -5087,12 +5099,12 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/middlehall) "aib" = ( -/obj/structure/stairs/east, -/obj/structure/railing{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 4 }, +/obj/structure/stairs/spawner/south, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/middlehall) +/area/tether/surfacebase/public_garden_two) "aic" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -5885,10 +5897,9 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/middlehall) "aji" = ( -/obj/structure/stairs/east, -/obj/structure/railing, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/middlehall) +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside2) "ajj" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 @@ -6974,10 +6985,10 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/uppersouthstairwell) "akV" = ( -/obj/structure/stairs/west, /obj/structure/railing{ dir = 1 }, +/obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/uppersouthstairwell) "akW" = ( @@ -7494,7 +7505,7 @@ /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/medical/morgue) "alM" = ( -/obj/structure/stairs/west, +/obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/uppersouthstairwell) "alN" = ( @@ -10858,12 +10869,9 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) "arq" = ( -/obj/structure/stairs/south, -/obj/structure/window/reinforced{ - dir = 4 - }, +/obj/structure/stairs/spawner/north, /turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_two) +/area/tether/surfacebase/north_staires_two) "arr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor{ @@ -12551,9 +12559,9 @@ /turf/simulated/floor/plating, /area/maintenance/asmaint2) "auh" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside2) +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "aui" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor{ @@ -14740,6 +14748,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) +"ayo" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "ayp" = ( /obj/effect/catwalk_plated/dark, /turf/simulated/open, @@ -15722,9 +15737,9 @@ /turf/simulated/open, /area/tether/surfacebase/north_staires_two) "aAE" = ( -/obj/structure/stairs/north, +/obj/structure/stairs/spawner/south, /turf/simulated/floor/tiled, -/area/tether/surfacebase/north_staires_two) +/area/rnd/staircase/secondfloor) "aAF" = ( /obj/structure/railing{ dir = 8 @@ -16311,16 +16326,13 @@ /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/surface_two_hall) "aBT" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/east_stairs_two) "aBU" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) "aBV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -16895,7 +16907,7 @@ /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/surface_two_hall) "aCU" = ( -/obj/structure/stairs/west, +/obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled/techfloor, /area/chapel/main) "aCV" = ( @@ -22898,6 +22910,19 @@ /obj/random/trash_pile, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) +"aOv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) "aOw" = ( /obj/machinery/light_switch{ dir = 4; @@ -23002,6 +23027,29 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) +"aOJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aOK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) "aOL" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 9 @@ -24106,10 +24154,6 @@ /obj/random/tool, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"aRk" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled, -/area/rnd/staircase/secondfloor) "aRl" = ( /obj/machinery/requests_console{ department = "Science"; @@ -28197,10 +28241,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"aZv" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/east_stairs_two) "aZC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -33377,10 +33417,6 @@ temperature = 80 }, /area/tcommsat/chamber) -"blF" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) "blG" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/southhall) @@ -33561,42 +33597,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"blW" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"blX" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"blY" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "blZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, @@ -38278,7 +38278,7 @@ aac arl asq arl -auh +aji aac aac adt @@ -40121,7 +40121,7 @@ anf aog apq aqw -arq +aib ast atG ass @@ -40348,7 +40348,7 @@ bfL bkQ blo blM -blW +aOv bme bfL bfL @@ -40490,7 +40490,7 @@ bkJ bkR blp blN -blX +aOJ bfL bfL bfL @@ -40632,7 +40632,7 @@ bfL bkS blq blO -blY +aOK bmf bfL bfL @@ -42007,7 +42007,7 @@ aOg aOW aPE aOY -aRk +aAE aRM aSv aHE @@ -42149,7 +42149,7 @@ aOh aOX aOY aOY -aRk +aAE aRM aty aug @@ -43378,8 +43378,8 @@ aeS afG agy ahn -aib -aji +abW +acw ahn all amo @@ -45388,7 +45388,7 @@ aoO ayW azA ayW -aAE +arq aBk aBP aCC @@ -45530,7 +45530,7 @@ ayE ayW azA ayW -aAE +arq aBl aBQ aCD @@ -46952,7 +46952,7 @@ azG aAi aAH aAJ -aBT +auh aCI aDz aEi @@ -47094,7 +47094,7 @@ azH aAj aAI aAJ -aBU +ayo aCJ aDA aBo @@ -47632,8 +47632,8 @@ aab aab aab aar -abW -acw +abv +abC acx aaH aaO @@ -48692,8 +48692,8 @@ aXi aXP aYz aUc -aZv -aZv +aBT +aBT aNo aLX aLX @@ -50428,8 +50428,8 @@ mDn ekH glx blh -blF -blF +aBU +aBU blh abn aab diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index cd79f9905ed..eee7e37e52b 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -1,63243 +1,63235 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/unsimulated/wall/planetary/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aab" = ( -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aac" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aad" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"aae" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/iaa) -"aaf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/iaa) -"aag" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"aah" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/triage) -"aai" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/breakroom) -"aaj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 22; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"aak" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"aal" = ( -/obj/machinery/vending/cola{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/camera/network/security{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"aam" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"aan" = ( -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/security, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"aao" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/storage) -"aap" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aaq" = ( -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aar" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"aas" = ( -/obj/structure/table/rack, -/obj/random/maintenance/medical, -/obj/random/maintenance/clean, -/obj/random/medical/lite, -/obj/random/maintenance/medical, -/obj/random/toy, -/turf/simulated/floor/plating, -/area/maintenance/lower/medsec_maintenance) -"aat" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"aau" = ( -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"aav" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/cups, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"aaw" = ( -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"aax" = ( -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"aay" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"aaz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/storage) -"aaA" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - id_tag = "MedbayTriage"; - name = "Medbay Airlock"; - req_one_access = list(5) - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aaB" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/machinery/vending/medical{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aaC" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aaD" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aaE" = ( -/turf/simulated/wall, -/area/maintenance/lower/medsec_maintenance) -"aaF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/medsec_maintenance) -"aaG" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Break Room"; - req_one_access = list(1,38) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"aaH" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aaI" = ( -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/machinery/atmospherics/portables_connector, -/obj/item/weapon/tool/wrench, -/obj/machinery/door/window/brigdoor/southright{ - req_access = list(); - req_one_access = list(5) - }, -/obj/machinery/alarm{ - pixel_y = 25 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aaJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/closet/secure_closet/medical3, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aaK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/closet/secure_closet/medical3, -/obj/item/weapon/soap/nanotrasen, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aaL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/storage) -"aaM" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/tether/surfacebase/security/upperhall) -"aaN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aaO" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aaP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/security, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aaQ" = ( -/turf/simulated/open, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"aaR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/storage) -"aaS" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aaT" = ( -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/closet/secure_closet/medical3, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aaU" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aaV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aaW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aaX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"aaY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aaZ" = ( -/obj/structure/table/standard, -/obj/item/device/defib_kit/loaded, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aba" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/open, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"abb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/table/standard, -/obj/random/tetheraid, -/obj/random/tetheraid, -/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"abc" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"abd" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"abe" = ( -/obj/structure/closet, -/obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla, -/turf/simulated/floor/plating, -/area/maintenance/lower/medsec_maintenance) -"abf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"abg" = ( -/obj/machinery/door/blast/shutters{ - id = "hangarsurface"; - name = "Engine Repair Bay" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"abh" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/medical_stand, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, -/obj/structure/medical_stand, -/obj/structure/medical_stand, -/obj/structure/medical_stand, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"abi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"abj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"abk" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/maintenance/lower/medsec_maintenance) -"abl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/wood, -/area/maintenance/lower/medsec_maintenance) -"abm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/closet, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/clean, -/obj/random/junk, -/obj/item/weapon/reagent_containers/food/drinks/bottle/rum{ - desc = "TASTE DEMOCRACY"; - name = "Managed Democra-cider" - }, -/obj/random/contraband, -/obj/random/cigarettes, -/turf/simulated/floor/wood, -/area/maintenance/lower/medsec_maintenance) -"abn" = ( -/obj/structure/railing, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"abo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"abp" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"abq" = ( -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"abr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"abs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"abt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"abu" = ( -/obj/machinery/light_switch{ - dir = 8; - on = 0; - pixel_x = 24; - pixel_y = -22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/closet/secure_closet/medical3, -/obj/item/weapon/soap/nanotrasen, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"abv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"abw" = ( -/obj/machinery/door/airlock/medical, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"abx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aby" = ( -/obj/machinery/alarm{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"abz" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/structure/cable/green{ - d1 = 32; - d2 = 2; - icon_state = "32-2" - }, -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) -"abA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"abB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing, -/obj/structure/grille, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"abC" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"abE" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"abF" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abI" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abK" = ( -/obj/machinery/computer/security, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"abL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/red/bordercorner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abP" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/random/junk, -/turf/simulated/floor/wood, -/area/maintenance/lower/medsec_maintenance) -"abQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/maintenance/lower/medsec_maintenance) -"abR" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/medsec_maintenance) -"abS" = ( -/obj/structure/table/steel, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - desc = "Taste liberty"; - name = "Cup of Liber-tea" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/medsec_maintenance) -"abT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"abU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"abX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/breakroom) -"abY" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"abZ" = ( -/obj/machinery/vending/wallmed1{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aca" = ( -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"acb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/triage) -"acc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-10" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"acd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"ace" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"acf" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora) -"acg" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/medical/chemistry) -"ach" = ( -/obj/machinery/vending/wallmed1{ - dir = 1; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aci" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre 2"; - req_access = list(45) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"acj" = ( -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_hallway) -"ack" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"acl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"acm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"acn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aco" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"acp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"acq" = ( -/obj/machinery/vending/security{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"acr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"acs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"act" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"acu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"acv" = ( -/obj/structure/table/rack, -/obj/random/tetheraid, -/obj/random/maintenance/medical, -/turf/simulated/floor/wood, -/area/maintenance/lower/medsec_maintenance) -"acw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/medsec_maintenance) -"acx" = ( -/obj/structure/table/glass, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"acy" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/surgery2) -"acz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"acA" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Internal Affairs" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"acB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"acC" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/multi, -/obj/random/tetheraid, -/obj/item/weapon/storage/firstaid/regular, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"acD" = ( -/obj/structure/table/steel, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/packageWrap, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -30 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"acE" = ( -/obj/machinery/computer/secure_data, -/obj/item/device/radio/intercom/department/security{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"acF" = ( -/obj/structure/closet/secure_closet/hos2, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"acG" = ( -/obj/structure/table/steel, -/obj/item/weapon/folder/red, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"acH" = ( -/obj/structure/table/steel, -/obj/machinery/photocopier/faxmachine{ - department = "Security" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"acI" = ( -/obj/machinery/papershredder, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"acJ" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"acK" = ( -/obj/structure/bookcase, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/command_guide, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"acL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"acM" = ( -/obj/structure/railing, -/obj/machinery/light, -/turf/simulated/open, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"acN" = ( -/obj/structure/railing, -/turf/simulated/open, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"acO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"acP" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"acQ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; - name = "Chemistry Cleaner" - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"acR" = ( -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"acS" = ( -/obj/machinery/vending/wallmed1{ - pixel_x = -30 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer{ - name = "Scan Records" - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"acT" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"acU" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"acV" = ( -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"acW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"acX" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"acY" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"acZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ada" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/machinery/vitals_monitor, -/obj/machinery/vitals_monitor, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"adb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"adc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"add" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"ade" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"adf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/red/bordercorner2, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"adg" = ( -/obj/structure/table/steel, -/obj/item/device/camera, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/item/device/retail_scanner/security, -/obj/item/device/taperecorder, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"adh" = ( -/obj/machinery/papershredder, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"adi" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "BrigFoyer"; - layer = 2.8; - name = "Security"; - req_one_access = list(38,63) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"adj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"adk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/button/windowtint{ - id = "iaal"; - pixel_x = 25; - pixel_y = 7 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Internal Affairs Agent" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"adl" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"adm" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"adn" = ( -/obj/machinery/door/airlock/glass_security, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"ado" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio{ - pixel_x = -4 - }, -/obj/machinery/recharger, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"adp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"adq" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/breakroom) -"adr" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"ads" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"adt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"adu" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"adv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"adw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 10 - }, -/obj/machinery/vending/medical{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"adx" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/green, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"ady" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"adz" = ( -/obj/structure/table/glass, -/obj/item/weapon/packageWrap, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/backup_implanter{ - pixel_y = -12 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = -5 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 2 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 9 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"adA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/button/windowtint/multitint{ - id = "medbayfoyer"; - pixel_x = -8; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"adB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"adC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"adD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"adE" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"adF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"adG" = ( -/obj/structure/catwalk, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"adH" = ( -/obj/effect/floor_decal/corner_oldtile/green/full{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"adI" = ( -/obj/effect/floor_decal/corner_oldtile/green{ - dir = 5 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"adJ" = ( -/obj/effect/floor_decal/corner_oldtile/green/full{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"adK" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"adL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/random/tech_supply, -/obj/effect/floor_decal/rust, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"adM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"adN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"adO" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/briefingroom) -"adP" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/green, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"adQ" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"adR" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/upperhall) -"adS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"adT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"adU" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/evidence, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"adV" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/item/bodybag/cryobag{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/weapon/storage/toolbox/emergency{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/item/weapon/storage/box/lights/mixed{ - pixel_y = 4 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"adW" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/processing) -"adX" = ( -/obj/machinery/camera/network/security, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"adY" = ( -/obj/structure/table/steel, -/obj/item/weapon/folder/red, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"adZ" = ( -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/medsec_maintenance) -"aea" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"aeb" = ( -/obj/structure/table/steel, -/obj/item/weapon/folder/red, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"aec" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"aed" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aee" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 5; - pixel_y = -25 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -10; - pixel_y = -30 - }, -/obj/machinery/camera/network/medbay{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"aef" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aeg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aeh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/standard, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/weapon/storage/box/syringes{ - pixel_y = 9 - }, -/obj/item/weapon/storage/box/syringes{ - pixel_y = 9 - }, -/obj/random/medical, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 14; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aei" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aej" = ( -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aek" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"ael" = ( -/obj/effect/floor_decal/corner_oldtile/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aem" = ( -/obj/structure/railing, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aen" = ( -/obj/effect/floor_decal/corner_oldtile/green{ - dir = 6 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aeo" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aep" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aeq" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera/network/security, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"aer" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"aes" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aet" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/closet/walllocker_double{ - dir = 4; - pixel_x = 28 - }, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/random/drinkbottle, -/obj/item/device/camera_film, -/obj/item/device/tape/random, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"aeu" = ( -/obj/machinery/atmospherics/pipe/zpipe/up, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "16-0" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aev" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"aew" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"aex" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"aey" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security/polarized{ - id_tint = "sec_processing"; - name = "Security Processing"; - req_access = list(63) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/security/processing) -"aez" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aeA" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - id_tag = null; - name = "Medbay Airlock"; - req_access = list(5); - req_one_access = list(5) - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aeB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aeC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"aeD" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"aeE" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aeF" = ( -/obj/machinery/door/window/brigdoor/southright{ - dir = 4; - req_access = list(77); - req_one_access = newlist() - }, -/obj/machinery/door/window/brigdoor/southright{ - dir = 8; - req_access = list(77); - req_one_access = newlist() - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aeG" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/lobby) -"aeH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aeI" = ( -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aeJ" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/lobby) -"aeK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aeL" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aeM" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aeN" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aeO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aeP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Medical Storage"; - sortType = "Medical Storage" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aeQ" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aeR" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/masks, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aeS" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/healthanalyzer, -/obj/machinery/alarm{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"aeT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aeU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aeV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/triage) -"aeW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aeX" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aeY" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aeZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"afa" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_y = -32 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"afb" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"afc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/iaa/officecommon) -"afd" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"afe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aff" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"afg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"afh" = ( -/turf/simulated/wall/r_wall, -/area/rnd/research_storage) -"afi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"afj" = ( -/turf/simulated/wall, -/area/crew_quarters/recreation_area_restroom) -"afk" = ( -/obj/structure/cable{ - icon_state = "32-4" - }, -/obj/structure/lattice, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/down{ - dir = 4 - }, -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) -"afl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"afm" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"afn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = 26 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"afo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"afp" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"afq" = ( -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"afr" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"afs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aft" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"afu" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"afv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"afw" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"afx" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre 2"; - req_access = list(45) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"afy" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "surfsurgery2" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/surgery1) -"afz" = ( -/obj/structure/bed/chair/office/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"afA" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 6; - pixel_y = -22 - }, -/obj/machinery/button/windowtint{ - id = "surfsurgery2"; - pixel_x = -3; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"afB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"afC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"afD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/triage) -"afE" = ( -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"afF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay foyer."; - dir = 1; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - pixel_x = -10; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"afG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/triage) -"afH" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"afI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"afJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"afK" = ( -/turf/simulated/wall, -/area/rnd/staircase/thirdfloor) -"afL" = ( -/obj/effect/floor_decal/rust, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"afM" = ( -/turf/simulated/wall, -/area/rnd/research_storage) -"afN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"afO" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"afP" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"afQ" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"afR" = ( -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"afS" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora_storage) -"afT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"afU" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"afV" = ( -/obj/effect/floor_decal/rust, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"afW" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/tech_supply, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"afX" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"afY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"afZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aga" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"agb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"agc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"agd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"age" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Internal Affairs" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"agf" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"agg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"agh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"agi" = ( -/obj/structure/filingcabinet/medical{ - desc = "A large cabinet with hard copy medical records."; - name = "Medical Records" - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"agj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"agk" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"agl" = ( -/obj/machinery/door/window/southleft{ - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"agm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"agn" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"ago" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"agp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"agq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"agr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ags" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass_research{ - name = "Xenoflora Research"; - req_one_access = list(77) - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"agt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/green/full, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"agu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"agv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"agw" = ( -/turf/simulated/wall, -/area/tether/surfacebase/surface_three_hall) -"agx" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"agy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/steel, -/obj/item/weapon/storage/bag/circuits/basic, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"agz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"agA" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"agB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"agC" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "32-1" - }, -/obj/structure/disposalpipe/down, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/rnd/research_storage) -"agD" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"agE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"agF" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer" - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"agG" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/computer/secure_data{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"agH" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"agI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/briefingroom) -"agJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/lattice, -/obj/structure/cable/green{ - d1 = 32; - d2 = 4; - icon_state = "32-4" - }, -/turf/simulated/open, -/area/maintenance/lower/medsec_maintenance) -"agK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"agL" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/clean, -/obj/random/maintenance/medical, -/obj/structure/closet, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"agM" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"agN" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"agO" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"agP" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/door/window/brigdoor/eastright{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/recharger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"agQ" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "hos_office" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/hos) -"agR" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"agS" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"agT" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/weapon/storage/box/donut, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"agU" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"agV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"agW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/red/bordercorner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"agX" = ( -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"agY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"agZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aha" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ahb" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Medical Storage"; - sortType = "Medical Storage" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"ahc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ahd" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "atrium" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_three_hall) -"ahe" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ahf" = ( -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ahg" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"ahh" = ( -/turf/simulated/wall, -/area/rnd/workshop) -"ahi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ahj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/workshop) -"ahk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/steel, -/obj/random/tech_supply, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"ahl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ahm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"ahn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aho" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"ahp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/workshop) -"ahq" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"ahr" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"ahs" = ( -/obj/machinery/atmospherics/unary/heater{ - icon_state = "heater" - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aht" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ahu" = ( -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahv" = ( -/obj/machinery/door/airlock/security{ - name = "Internal Affairs"; - req_access = list(38); - req_one_access = newlist() - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"ahw" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "BrigFoyer"; - layer = 2.8; - name = "Security"; - req_one_access = list(38,63) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahx" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/chair/office/dark, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahz" = ( -/obj/structure/window/reinforced, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"ahA" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ahC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahD" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/junk, -/obj/random/maintenance/medical, -/obj/random/maintenance/clean, -/obj/random/junk, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"ahE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"ahF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/security/lobby) -"ahH" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/security/lobby) -"ahI" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"ahL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"ahM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"ahN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"ahO" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/random/medical{ - pixel_x = -4; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"ahP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"ahQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"ahR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ahS" = ( -/obj/structure/grille, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_three_hall) -"ahT" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"ahU" = ( -/obj/machinery/media/jukebox, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"ahV" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/airlock{ - id = "BrigFoyer"; - name = "Brig Foyer"; - pixel_x = -6; - req_access = list(1) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/weapon/paper_bin{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"ahX" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/eastright{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ahY" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"ahZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aia" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aib" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aic" = ( -/obj/random/trash_pile, -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"aid" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"aie" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aif" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 32 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = -8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aig" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aih" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aii" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/tether/surfacebase/medical/lobby) -"aij" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall, -/area/tether/surfacebase/medical/lobby) -"aik" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"ail" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aim" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"ain" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aio" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/panic_shelter) -"aip" = ( -/obj/machinery/vending/snack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/surface_three_hall) -"aiq" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) -"air" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ais" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ait" = ( -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aiu" = ( -/obj/structure/table/steel, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5 - }, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"aiv" = ( -/obj/random/junk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"aiw" = ( -/obj/structure/table/steel, -/obj/item/device/integrated_circuit_printer, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"aix" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aiy" = ( -/obj/structure/table/steel, -/obj/item/device/electronic_assembly/large/default, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"aiz" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aiA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/rust, -/obj/machinery/vending/assist{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aiB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/full, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aiC" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aiD" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aiE" = ( -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aiF" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) -"aiG" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aiH" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/recreation_area_restroom) -"aiI" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aiJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aiK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"aiL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/camera/network/security{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aiM" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/security/lobby) -"aiN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aiO" = ( -/obj/machinery/door_timer/cell_3{ - id = "Cell A"; - name = "Cell A"; - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aiP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aiQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aiR" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aiS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aiT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aiU" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/security_space_law, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/security/lobby) -"aiV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aiW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/lobby) -"aiX" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aiY" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"aiZ" = ( -/obj/machinery/door/window/brigdoor/southright{ - req_access = list(77); - req_one_access = newlist() - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aja" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_x = -4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"ajb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ajc" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajd" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aje" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajf" = ( -/obj/structure/window/reinforced, -/obj/structure/filingcabinet/chestdrawer{ - name = "Medical Forms" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"ajg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"ajh" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aji" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ajj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ajk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"ajl" = ( -/obj/structure/bed/padded, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ajm" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ajn" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ajo" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 29 - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ajp" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ajq" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ajr" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ajs" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ajt" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aju" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"ajv" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajw" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajx" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"ajz" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 1; - id = "Cell B"; - name = "Cell B"; - req_access = list(2) - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/tether/surfacebase/security/upperhall) -"ajA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ajB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"ajC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"ajF" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajG" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"ajH" = ( -/obj/machinery/computer/secure_data, -/obj/structure/fireaxecabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ajI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/rust, -/obj/item/device/gps/science, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"ajJ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 1; - id = "Cell A"; - name = "Cell A"; - req_access = list(2) - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/tether/surfacebase/security/upperhall) -"ajK" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"ajL" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Security Lobby" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/tether/surfacebase/security/lobby) -"ajM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ajN" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"ajO" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/tether/surfacebase/security/lobby) -"ajP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"ajQ" = ( -/obj/structure/bed/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"ajR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ajS" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/lobby) -"ajT" = ( -/obj/structure/sign/directions/evac, -/turf/simulated/wall, -/area/tether/surfacebase/security/lobby) -"ajU" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"ajV" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajW" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajX" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ajY" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ajZ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aka" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"akb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"akc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ake" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"akf" = ( -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"akg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"akh" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"aki" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"akj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"akk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"akl" = ( -/obj/machinery/vending/cola{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/surface_three_hall) -"akm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"akn" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ako" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Port to Isolation" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"akp" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aks" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/machinery/computer/timeclock/premade/west, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akt" = ( -/obj/structure/table/steel, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5 - }, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = 5 - }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"aku" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akv" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"akx" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aky" = ( -/obj/structure/table, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/random/action_figure, -/obj/random/cigarettes, -/turf/simulated/floor/plating, -/area/maintenance/lower/medsec_maintenance) -"akz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"akA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/chemistry) -"akB" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/beakers, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"akC" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akD" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akF" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/medical/chemistry) -"akG" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akK" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Xenobotany"; - sortType = "Xenobotany" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"akM" = ( -/obj/machinery/door/window/southleft{ - name = "Library Desk Door"; - req_access = list(37) - }, -/obj/machinery/light_switch{ - dir = 4; - on = 0; - pixel_x = -24 - }, -/turf/simulated/floor/carpet, -/area/library) -"akN" = ( -/obj/structure/closet, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"akO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"akP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"akQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"akR" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 8; - pixel_x = -2 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"akS" = ( -/turf/simulated/wall, -/area/crew_quarters/pool) -"akT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/pool) -"akU" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Pool" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/crew_quarters/pool) -"akV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/crew_quarters/pool) -"akW" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"akX" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"akY" = ( -/turf/simulated/wall, -/area/crew_quarters/recreation_area) -"akZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/recreation_area) -"ala" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"alb" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"alc" = ( -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_three) -"ald" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"ale" = ( -/obj/structure/sign/directions/engineering{ - dir = 10; - pixel_y = -10 - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_three) -"alf" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = 3 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -4 - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_three) -"alg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"alh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ali" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"alj" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) -"alk" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"all" = ( -/obj/machinery/shower{ - pixel_y = 8 - }, -/obj/item/weapon/soap/deluxe, -/obj/structure/curtain/open/shower, -/obj/item/weapon/bikehorn/rubberducky, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"alm" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/suit_cycler/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aln" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/northleft{ - dir = 4; - icon_state = "right"; - name = "Reception Window" - }, -/obj/machinery/door/window/brigdoor/eastright{ - dir = 8; - name = "Head of Personnel's Desk"; - req_access = list(57) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "hop_office_desk"; - layer = 3.1; - name = "HoP's Shutters" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"alo" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/surface_three_hall) -"alp" = ( -/obj/machinery/vending/coffee{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/surface_three_hall) -"alq" = ( -/turf/simulated/floor/wood, -/area/tether/surfacebase/surface_three_hall) -"alr" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"als" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"alt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"alu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"alv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"alw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/pool) -"alx" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aly" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Xenoflora Research"; - req_one_access = list(77) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/xenoflora_storage) -"alA" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/closet{ - name = "Clothing Storage" - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alB" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alC" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alD" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alE" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alF" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alG" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_hallway) -"alI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"alJ" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"alK" = ( -/obj/structure/closet/athletic_mixed, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"alL" = ( -/obj/machinery/fitness/punching_bag/clown, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"alM" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"alN" = ( -/obj/machinery/fitness/heavy/lifter, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"alO" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/clothing/shoes/boots/jackboots{ - desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom"; - name = "Dhaeleena's Jackboots" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"alP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"alQ" = ( -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"alR" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"alS" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"alT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"alU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"alV" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/north_stairs_three) -"alW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"alX" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) -"alY" = ( -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) -"alZ" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) -"ama" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"amb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"amc" = ( -/obj/machinery/vending/cigarette{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/surface_three_hall) -"amd" = ( -/obj/structure/table/glass, -/obj/item/weapon/material/ashtray/plastic, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/surface_three_hall) -"ame" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"amf" = ( -/obj/structure/ladder, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"amg" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"amh" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/rnd/research) -"ami" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/techfloor, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"amj" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/techfloor, -/obj/effect/floor_decal/techfloor/hole/right, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"amk" = ( -/obj/effect/floor_decal/techfloor/corner, -/obj/effect/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"aml" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor/hole, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"amm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"ams" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"amu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"amv" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"amw" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"amx" = ( -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"amy" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/north_stairs_three) -"amz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/north_stairs_three) -"amA" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"amB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"amC" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"amD" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"amE" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"amF" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Atrium Third Floor" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/north_stairs_three) -"amG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"amH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"amI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"amJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/int{ - name = "Fire/Phoron Shelter" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"amK" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/crew_quarters/panic_shelter) -"amL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch{ - name = "Fire/Phoron Shelter Secure Hatch"; - req_one_access = list() - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/panic_shelter) -"amM" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amN" = ( -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amO" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"amP" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"amQ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/water/pool, -/area/crew_quarters/pool) -"amR" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/water/pool, -/area/crew_quarters/pool) -"amS" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"amT" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"amU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"amV" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"amW" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"amX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"amY" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/smartfridge{ - req_access = list(28) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"amZ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ana" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/glasses/threedglasses, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"anb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/recreation_area) -"anc" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Secondary Janitorial Closet"; - req_access = list(26) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/north_stairs_three) -"and" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"ane" = ( -/turf/simulated/open, -/area/tether/surfacebase/north_stairs_three) -"anf" = ( -/obj/structure/sign/directions/evac{ - dir = 8 - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_three) -"ang" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/effect/floor_decal/borderfloorblack, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"anh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ani" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"anj" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"ank" = ( -/obj/machinery/door/airlock/maintenance/int{ - name = "Fire/Phoron Shelter" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/panic_shelter) -"anl" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"anm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ann" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"ano" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anp" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anq" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anr" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ans" = ( -/obj/machinery/computer/area_atmos{ - range = 8 - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"ant" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anu" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"anw" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"anx" = ( -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"any" = ( -/turf/simulated/floor/water/pool, -/area/crew_quarters/pool) -"anz" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/water/pool, -/area/crew_quarters/pool) -"anA" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"anB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"anC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"anD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"anE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"anF" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/coin/silver, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/recharger, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"anG" = ( -/obj/structure/flora/tree/sif, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/north_stairs_three) -"anH" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"anI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"anJ" = ( -/obj/structure/sign/directions/evac, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_three) -"anK" = ( -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"anL" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"anM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"anN" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"anO" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"anP" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"anQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/int{ - name = "Fire/Phoron Shelter" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/panic_shelter) -"anR" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anS" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anT" = ( -/obj/effect/floor_decal/techfloor, -/obj/effect/floor_decal/techfloor/hole/right, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anU" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole/right, -/obj/effect/floor_decal/techfloor/hole, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anV" = ( -/obj/machinery/door/airlock/hatch{ - name = "Fire/Phoron Shelter Secure Hatch"; - req_one_access = list() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/panic_shelter) -"anW" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -31 - }, -/obj/effect/floor_decal/techfloor, -/obj/effect/floor_decal/techfloor/hole, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anX" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anY" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"anZ" = ( -/obj/structure/table/glass, -/obj/item/weapon/inflatable_duck, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aoa" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"aob" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aoc" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aod" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aoe" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aof" = ( -/obj/structure/bed/padded, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/vending/wallmed1/public{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"aog" = ( -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"aoh" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"aoi" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aoj" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aok" = ( -/turf/simulated/wall/r_wall, -/area/hydroponics) -"aol" = ( -/turf/simulated/wall/r_wall, -/area/vacant/vacant_shop) -"aom" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/int{ - name = "Fire/Phoron Shelter" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_shop) -"aon" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aoo" = ( -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aop" = ( -/turf/simulated/floor/grass, -/area/hydroponics) -"aoq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; - icon_state = "frame"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aor" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/item/weapon/beach_ball, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aos" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aot" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"aou" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/vending/snack{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aov" = ( -/obj/machinery/scale, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aow" = ( -/obj/machinery/scale, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aox" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aoy" = ( -/obj/structure/sign/department/xenolab, -/turf/simulated/wall, -/area/rnd/staircase/thirdfloor) -"aoz" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aoA" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"aoB" = ( -/obj/machinery/light/small, -/obj/structure/mopbucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) -"aoC" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aoD" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aoE" = ( -/obj/structure/sign/directions/evac{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/vacant/vacant_shop) -"aoF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aoG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aoH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"aoI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aoJ" = ( -/turf/simulated/wall, -/area/crew_quarters/freezer) -"aoK" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Isolation to Waste" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aoL" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aoM" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aoN" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/surface_three_hall) -"aoO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aoP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/techfloor_grid, -/area/rnd/xenobiology/xenoflora_storage) -"aoQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aoR" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aoS" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aoT" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aoU" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aoV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass{ - name = "Recreation Area" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/recreation_area) -"aoW" = ( -/obj/machinery/alarm{ - pixel_y = 20 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aoX" = ( -/turf/simulated/wall, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"aoY" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aoZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apa" = ( -/obj/structure/closet/secure_closet/hydroponics/sci{ - req_access = list(77) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"apb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/computer/guestpass{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apc" = ( -/turf/simulated/wall, -/area/vacant/vacant_shop) -"apd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"ape" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apf" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apg" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/drinkbottle, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/random/tool, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"aph" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"api" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/button/remote/blast_door{ - id = "kitchen2"; - name = "Kitchen shutters"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23; - pixel_y = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"apj" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"apk" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"apl" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"apm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"apn" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"apo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"app" = ( -/obj/machinery/atm{ - pixel_y = 31 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aps" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apu" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apv" = ( -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"apw" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"apx" = ( -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"apy" = ( -/obj/machinery/shower{ - dir = 8; - pixel_x = -5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"apz" = ( -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/medical, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"apA" = ( -/obj/structure/table/steel, -/obj/fiftyspawner/steel, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"apB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apC" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apD" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apE" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Library"; - sortType = "Library" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"apG" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"apH" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"apI" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"apJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"apK" = ( -/obj/structure/sign/department/robo{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"apL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"apM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"apN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Pool" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/pool) -"apO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apP" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"apQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apS" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"apV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"apW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"apX" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/computer/timeclock/premade/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqa" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqc" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"aqd" = ( -/obj/effect/floor_decal/corner/blue/diagonal, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqe" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/hydroponics) -"aqf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqg" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_three_hall) -"aqh" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "atrium" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_three_hall) -"aqi" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/vacant/vacant_shop) -"aqj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"aqk" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/random/junk, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"aql" = ( -/obj/structure/closet/l3closet/scientist, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aqm" = ( -/obj/machinery/beehive, -/turf/simulated/floor/grass, -/area/hydroponics) -"aqn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aqo" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aqp" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/grass, -/area/hydroponics) -"aqq" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/hydroponics) -"aqr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aqs" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"aqt" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"aqu" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/pool, -/area/crew_quarters/pool) -"aqv" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/water/pool, -/area/crew_quarters/pool) -"aqw" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - frequency = 1392; - icon_state = "door_locked"; - id_tag = "xenobiology_north_airlock_inner"; - locked = 1; - name = "Xenobiology North Airlock" - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/access_button/airlock_interior{ - frequency = 1392; - master_tag = "xenobiology_north_airlock_control"; - name = "Xenobiology Access Control"; - pixel_y = 24; - req_one_access = list(47,55) - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aqx" = ( -/obj/machinery/alarm{ - pixel_y = 20 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aqy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/requests_console/preset/research{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"aqz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/research{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aqA" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aqB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqC" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aqD" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aqE" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqF" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aqG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"aqK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"aqL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"aqM" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"aqN" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/engineering, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"aqO" = ( -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"aqP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"aqQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqS" = ( -/turf/simulated/wall, -/area/rnd/robotics) -"aqT" = ( -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = 3 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -4 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = -10 - }, -/turf/simulated/wall, -/area/tether/surfacebase/surface_three_hall) -"aqU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aqV" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/hydroponics) -"aqW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aqX" = ( -/obj/machinery/alarm{ - pixel_y = 25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aqY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aqZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"ara" = ( -/obj/machinery/camera/network/research, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"arb" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass_research{ - name = "Xenoflora Research"; - req_one_access = list(77) - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"arc" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"ard" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"are" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arf" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arg" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"ari" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"arj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - frequency = 1392; - icon_state = "door_locked"; - id_tag = "xenobiology_north_airlock_outer"; - locked = 1; - name = "Xenobiology North Airlock" - }, -/obj/machinery/access_button/airlock_interior{ - command = "cycle_exterior"; - frequency = 1392; - master_tag = "xenobiology_north_airlock_control"; - name = "Xenobiology Access Control"; - pixel_y = 24; - req_one_access = list(47,55) - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"ark" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"arl" = ( -/obj/item/weapon/bikehorn/rubberducky, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"arm" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"arn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aro" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"arp" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"arq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"arr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"ars" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"art" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aru" = ( -/turf/simulated/wall, -/area/crew_quarters/kitchen) -"arv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arw" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arx" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - name = "Xenoflora Research"; - req_one_access = list(77) - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"ary" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arz" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arA" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arB" = ( -/obj/structure/closet/lasertag/red, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"arC" = ( -/obj/structure/closet/lasertag/blue, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"arD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"arE" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/surface_three_hall) -"arF" = ( -/obj/machinery/vending/fitness, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/surface_three_hall) -"arG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"arH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"arI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"arJ" = ( -/turf/simulated/wall, -/area/crew_quarters/bar) -"arK" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"arL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"arM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"arN" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hydroponics) -"arO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"arP" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"arQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"arR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/grass, -/area/hydroponics) -"arS" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"arT" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"arU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/pool) -"arV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/pool) -"arW" = ( -/turf/simulated/wall, -/area/tether/surfacebase/public_garden_three) -"arX" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"arY" = ( -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"arZ" = ( -/mob/living/simple_mob/vore/rabbit/brown/george, -/turf/simulated/floor/grass, -/area/hydroponics) -"asa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/robotics) -"asb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"asc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"asd" = ( -/obj/structure/sign/biohazard{ - pixel_y = 32 - }, -/obj/structure/flora/pottedplant/crystal, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/camera/network/research/xenobio, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"ase" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"asf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"asg" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"ash" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"asi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"asj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/sign/botany, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hydroponics) -"ask" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"asl" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access = list(29,47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"asm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"asn" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aso" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"asp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"asq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"asr" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ass" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ast" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"asu" = ( -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"asv" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"asw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"asx" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"asy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"asz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"asA" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"asB" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"asC" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"asD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/machinery/door/blast/shutters{ - id = "kitchen2"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"asE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"asF" = ( -/obj/structure/closet/secure_closet/hydroponics/sci{ - req_access = list(77) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"asG" = ( -/obj/machinery/door/airlock/glass{ - name = "Hydroponics Break Room"; - req_one_access = list(35,28) - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"asH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"asI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"asJ" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"asK" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"asL" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"asM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"asN" = ( -/obj/machinery/alarm{ - pixel_y = 25 - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"asO" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"asP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"asQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"asR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"asS" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"asT" = ( -/turf/simulated/wall/r_wall, -/area/bridge) -"asU" = ( -/obj/machinery/door/airlock/maintenance/int{ - name = "Fire/Phoron Shelter" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hydroponics) -"asV" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"asW" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"asX" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"asY" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"asZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/grass, -/area/hydroponics) -"ata" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/grass, -/area/hydroponics) -"atb" = ( -/turf/simulated/wall, -/area/hydroponics/cafegarden) -"atc" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"atd" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"ate" = ( -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"atf" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"atg" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"ath" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/vending/hydronutrients{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"ati" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"atj" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"atk" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/biogenerator, -/turf/simulated/floor/grass, -/area/hydroponics) -"atl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) -"atm" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"atn" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/smartfridge/drying_rack{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"ato" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/smartfridge/drinks, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"atp" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"atq" = ( -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"atr" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"ats" = ( -/turf/simulated/wall, -/area/hallway/lower/third_south) -"att" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"atu" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/photo_album{ - pixel_y = -10 - }, -/obj/item/weapon/reagent_containers/food/drinks/flask{ - pixel_x = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"atv" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"atw" = ( -/obj/machinery/camera/network/outside{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"atx" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aty" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"atz" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/material/minihoe, -/obj/item/weapon/storage/box/botanydisk, -/obj/item/weapon/storage/box/botanydisk, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"atA" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"atB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"atC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"atD" = ( -/obj/structure/table/steel, -/obj/fiftyspawner/steel, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"atE" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/rnd/research_storage) -"atF" = ( -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"atG" = ( -/turf/simulated/wall/r_wall, -/area/hallway/lower/third_south) -"atH" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "atrium" - }, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/lower/third_south) -"atI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"atJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"atK" = ( -/obj/machinery/botany/editor, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"atL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"atM" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/weapon/material/knife/butch, -/obj/item/weapon/material/kitchen/rollingpin, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"atN" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/machinery/vending/boozeomat, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"atO" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"atP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"atQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"atR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"atS" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"atT" = ( -/turf/simulated/wall/r_wall, -/area/rnd/research) -"atU" = ( -/turf/simulated/wall, -/area/rnd/research) -"atV" = ( -/obj/structure/table/steel, -/obj/item/device/electronic_assembly/large/default, -/obj/machinery/light, -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"atW" = ( -/obj/structure/table/steel, -/obj/item/device/integrated_circuit_printer, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"atX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"atY" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"atZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aua" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"aub" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"auc" = ( -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/mauve/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"aud" = ( -/turf/simulated/shuttle/wall/voidcraft/green{ - hard_corner = 1 - }, -/area/tether/elevator) -"aue" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/lower/third_south) -"auf" = ( -/obj/structure/grille, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/lower/third_south) -"aug" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"auh" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aui" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auj" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/grass, -/area/hydroponics) -"aul" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aum" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"aun" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aup" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auq" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - name = "Circuitry Workshop"; - req_access = list(7); - req_one_access = list(7) - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"aur" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/console_screen, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled, -/area/rnd/research) -"aus" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"aut" = ( -/obj/structure/cable, -/obj/structure/cable/orange{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Surface Civilian"; - output_attempt = 0 - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"auu" = ( -/turf/simulated/open, -/area/rnd/staircase/thirdfloor) -"auv" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"auw" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"aux" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/tether/elevator) -"auy" = ( -/obj/machinery/botany/extractor, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auz" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/closet/wardrobe/science_white, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"auA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"auB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"auC" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"auD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"auE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"auF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"auG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"auH" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) -"auI" = ( -/obj/structure/railing, -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) -"auJ" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) -"auK" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auM" = ( -/obj/machinery/botany/extractor, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auN" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auO" = ( -/obj/structure/bed/chair/wood, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"auP" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/start{ - name = "Xenobotanist" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auQ" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"auR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"auS" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Look's like it's set to the info station... I wonder what else is on?"; - icon_state = "frame"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"auT" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/xenoflora/full, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"auU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/grass, -/area/hydroponics) -"auV" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/rnd/staircase/thirdfloor) -"auW" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"auX" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"auY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/research) -"auZ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"ava" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"avb" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"avc" = ( -/obj/machinery/seed_storage/xenobotany{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"avd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) -"ave" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"avf" = ( -/obj/machinery/biogenerator, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"avg" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Damn, looks like it's on the clown world channel. I wonder what else is on?"; - icon_state = "frame"; - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/grass, -/area/hydroponics) -"avh" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/machinery/camera/network/research{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"avi" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"avj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"avk" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 8; - name = "Xenoflora Waste Buffer"; - start_pressure = 0 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"avl" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -8; - pixel_y = -26 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"avm" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"avn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"avo" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"avp" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) -"avq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"avr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/grass, -/area/hydroponics) -"avs" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"avt" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"avu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"avv" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"avw" = ( -/obj/machinery/computer/rdconsole/core, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"avx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"avy" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/wall, -/area/crew_quarters/kitchen) -"avz" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"avA" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"avB" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"avC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"avD" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/button/remote/blast_door{ - id = "kitchen"; - name = "Kitchen shutters"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"avE" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"avF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"avG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"avH" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"avI" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"avJ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 8; - name = "Bar"; - req_access = list(25) - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"avK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) -"avL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen) -"avM" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"avN" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/honey_extractor, -/turf/simulated/floor/grass, -/area/hydroponics) -"avO" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"avP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"avQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"avR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"avS" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/stock_parts/scanning_module, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/capacitor, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"avT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"avU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"avV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"avW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"avX" = ( -/obj/machinery/door/firedoor, -/obj/item/weapon/folder/white, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westright{ - name = "Research Desk"; - req_access = list(7); - req_one_access = list(47) - }, -/obj/item/weapon/paper_bin{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"avY" = ( -/obj/structure/sign/deck/third, -/turf/simulated/shuttle/wall/voidcraft/green{ - hard_corner = 1 - }, -/area/tether/elevator) -"avZ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"awa" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"awb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"awc" = ( -/obj/machinery/camera/network/security{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"awd" = ( -/obj/machinery/librarycomp, -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet, -/area/library) -"awe" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"awf" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"awg" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"awh" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"awi" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"awj" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"awk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"awl" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"awm" = ( -/obj/machinery/button/remote/airlock{ - id = "barbackdoor"; - name = "Back Door Locks"; - pixel_x = -29; - pixel_y = 30; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"awn" = ( -/turf/simulated/wall/r_wall, -/area/bridge_hallway) -"awo" = ( -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"awp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"awq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"awr" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aws" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/secure_closet/bar, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"awt" = ( -/obj/structure/closet/gmcloset{ - name = "formal wardrobe" - }, -/obj/item/glass_jar, -/obj/item/device/retail_scanner/civilian, -/obj/item/device/retail_scanner/civilian, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"awu" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"awv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - id = "kitchen2"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aww" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/int{ - name = "Fire/Phoron Shelter" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"awx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/vending/fitness, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"awy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"awz" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"awA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"awB" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"awC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"awD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"awE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7) - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"awF" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"awG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"awH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"awI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"awJ" = ( -/obj/machinery/smartfridge, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"awK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"awL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"awM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/toilet{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"awN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"awO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"awP" = ( -/turf/simulated/wall, -/area/hydroponics) -"awQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"awR" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"awS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"awT" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"awU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"awV" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/shaker, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"awW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"awX" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"awY" = ( -/obj/machinery/r_n_d/circuit_imprinter{ - dir = 1 - }, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"awZ" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/r_n_d/protolathe{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"axa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"axb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/machinery/computer/id_restorer{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"axc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"axd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"axe" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"axf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - name = "Private Restroom"; - req_access = newlist(); - req_one_access = newlist() - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"axg" = ( -/turf/simulated/wall, -/area/library) -"axh" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"axi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/library) -"axj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"axk" = ( -/obj/structure/sign/department/biblio, -/turf/simulated/wall, -/area/library) -"axl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"axm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"axn" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Front Desk"; - req_access = list(63); - req_one_access = list(63) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"axo" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/landmark/start{ - name = "Bartender" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"axp" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/beanbags, -/obj/item/weapon/gun/projectile/shotgun/doublebarrel, -/obj/item/weapon/paper{ - info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; - name = "Shotgun permit" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"axq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"axr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"axs" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/mauve/bordercorner2, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"axt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"axu" = ( -/obj/structure/table/woodentable, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"axv" = ( -/mob/living/simple_mob/animal/passive/cow, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"axw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"axx" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/flame/lighter/zippo, -/obj/item/clothing/head/that{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/tool/screwdriver, -/obj/item/clothing/mask/smokable/cigarette/cigar/havana, -/obj/item/clothing/mask/smokable/cigarette/cigar/cohiba, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"axy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"axz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"axA" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"axB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"axC" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"axD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"axE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"axF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/open, -/area/rnd/staircase/thirdfloor) -"axG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"axH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"axI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"axJ" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/glasses/welding, -/obj/item/weapon/storage/belt/utility, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/mauve/bordercorner2, -/turf/simulated/floor/tiled, -/area/rnd/research) -"axK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"axL" = ( -/obj/structure/table/standard, -/obj/structure/reagent_dispensers/acid{ - density = 0; - pixel_y = -30 - }, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/pen, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/research) -"axM" = ( -/obj/structure/table/standard, -/obj/item/weapon/disk/tech_disk, -/obj/item/weapon/disk/tech_disk, -/obj/item/weapon/disk/design_disk, -/obj/item/weapon/disk/design_disk, -/obj/item/weapon/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/omnihud/rnd, -/obj/item/clothing/gloves/sterile/latex, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/research) -"axN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"axO" = ( -/obj/structure/railing, -/turf/simulated/open, -/area/rnd/staircase/thirdfloor) -"axP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/camera/network/research/xenobio, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"axQ" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"axR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"axS" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Library" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/library) -"axT" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/library) -"axU" = ( -/obj/structure/bookcase{ - desc = "There appears to be a shrine to WGW at the back..."; - name = "Forbidden Knowledge" - }, -/obj/item/weapon/book/manual/engineering_hacking, -/obj/item/weapon/book/manual/nuclear, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/library/study) -"axV" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/closet, -/obj/item/clothing/under/suit_jacket/red, -/obj/item/weapon/barcodescanner, -/obj/item/weapon/pen/invisible, -/obj/item/weapon/pen/invisible, -/obj/item/weapon/pen/invisible, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/library/study) -"axW" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/briefcase{ - pixel_x = -2; - pixel_y = -5 - }, -/obj/item/weapon/storage/briefcase{ - pixel_x = 3 - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/library/study) -"axX" = ( -/obj/structure/sign/department/chapel, -/turf/simulated/wall/r_wall, -/area/vacant/vacant_shop) -"axY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"axZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aya" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"ayb" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"ayc" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/button/windowtint{ - id = "secreet"; - name = "Window Tint Control"; - pixel_x = -25; - range = 15 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"ayd" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"aye" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"ayf" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"ayg" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/botanystorage) -"ayi" = ( -/obj/structure/disposalpipe/sortjunction{ - name = "Research"; - sortType = "Research" - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"ayj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"ayk" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/rnd/staircase/thirdfloor) -"ayl" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"aym" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/rnd/research) -"ayn" = ( -/obj/structure/sign/directions/evac{ - dir = 1 - }, -/turf/simulated/wall, -/area/rnd/research) -"ayo" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7) - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"ayp" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"ayq" = ( -/obj/structure/bed/chair, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"ayr" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"ays" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ayt" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/rnd/research) -"ayu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ayv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ayw" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"ayx" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hop) -"ayy" = ( -/obj/structure/table/woodentable, -/obj/machinery/libraryscanner, -/turf/simulated/floor/carpet, -/area/library) -"ayz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/library) -"ayA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/library) -"ayB" = ( -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"ayC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"ayD" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"ayE" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"ayF" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"ayG" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/library) -"ayH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ayI" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Librarian" - }, -/turf/simulated/floor/carpet, -/area/library) -"ayJ" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"ayK" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Xenoflora Research"; - req_one_access = list(77) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"ayL" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"ayM" = ( -/turf/simulated/wall, -/area/tether/surfacebase/barbackmaintenance) -"ayN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"ayO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ayP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"ayQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ayR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ayS" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ayT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"ayU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ayV" = ( -/obj/machinery/autolathe{ - hacked = 1 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"ayW" = ( -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = -26 - }, -/obj/item/weapon/paper{ - desc = ""; - info = "Please wear hearing and eye protection when testing firearms."; - name = "note to science staff" - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"ayX" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ayY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"ayZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/structure/bed/chair, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aza" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"azc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/research) -"azd" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"aze" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azf" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azg" = ( -/obj/machinery/newscaster{ - pixel_x = 25 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"azh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/turf/simulated/floor/wood, -/area/library) -"azi" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/library/study) -"azj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/library/study) -"azk" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"azl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"azm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/library/study) -"azn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled, -/area/rnd/research_storage) -"azo" = ( -/obj/structure/closet{ - name = "materials" - }, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"azp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"azq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azr" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"azs" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"azt" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"azu" = ( -/obj/structure/medical_stand, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"azv" = ( -/obj/structure/sign/double/barsign{ - dir = 8 - }, -/turf/simulated/wall, -/area/crew_quarters/bar) -"azw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azx" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"azy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azD" = ( -/obj/structure/closet{ - name = "mechanical equipment" - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"azE" = ( -/obj/structure/closet{ - name = "robotics parts" - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/weapon/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/weapon/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/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/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"azF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"azG" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Research Staircase" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"azH" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/rnd/robotics) -"azI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"azJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azK" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"azL" = ( -/turf/simulated/wall/r_wall, -/area/rnd/research/testingrange) -"azM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"azN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"azO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"azP" = ( -/turf/simulated/wall, -/area/tether/surfacebase/library/study) -"azQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/library) -"azR" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/library) -"azS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/library) -"azT" = ( -/turf/simulated/floor/wood, -/area/library) -"azU" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"azV" = ( -/obj/structure/table/woodentable, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/taperecorder, -/turf/simulated/floor/carpet, -/area/library) -"azW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/library) -"azX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/servicebackroom) -"azY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/botanystorage) -"azZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aAa" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/servicebackroom) -"aAb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/servicebackroom) -"aAc" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aAd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aAe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"aAf" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aAg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aAh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"aAi" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/library) -"aAj" = ( -/obj/machinery/vending/wallmed1/public{ - pixel_x = -28 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"aAk" = ( -/obj/structure/flora/pottedplant/unusual, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aAl" = ( -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/structure/table/rack/steel, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"aAm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aAn" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/vending/cola{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aAo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aAp" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aAq" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aAr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/disposalpipe/sortjunction{ - name = "Xenobiology"; - sortType = "Xenobiology" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aAs" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aAt" = ( -/obj/structure/flora/pottedplant/subterranean, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aAu" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aAv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aAw" = ( -/obj/structure/table/woodentable, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/item/device/retail_scanner/civilian{ - dir = 1 - }, -/obj/item/device/camera, -/obj/item/device/tape, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/library/study) -"aAx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"aAy" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/invisible, -/obj/machinery/light/small, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/library/study) -"aAz" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/library) -"aAA" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/simulated/floor/carpet, -/area/library) -"aAB" = ( -/turf/simulated/wall, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"aAC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/botanystorage) -"aAD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/botanystorage) -"aAE" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/carpet, -/area/library) -"aAF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aAG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aAH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aAI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aAJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aAK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aAL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/chem_master/condimaster, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aAM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aAN" = ( -/turf/simulated/open, -/area/hallway/lower/third_south) -"aAO" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/machinery/camera/network/research/xenobio{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aAP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aAQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aAR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/botanystorage) -"aAS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aAT" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"aAU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aAV" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aAW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aAX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aAY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aAZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aBa" = ( -/obj/structure/table/standard, -/obj/item/device/lightreplacer, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aBb" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aBc" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aBd" = ( -/obj/machinery/door/airlock/glass{ - name = "Hydroponics Storage"; - req_one_access = list(35,28) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aBe" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/flora/pottedplant/stoutbush, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"aBf" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/camera/network/research/xenobio, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aBg" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"aBh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"aBi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/recharge_station, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aBj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Research Staircase" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"aBk" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aBl" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aBm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aBn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aBo" = ( -/obj/machinery/door/airlock/command{ - name = "Site Manager's Quarters"; - req_access = list(20) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aBp" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/grass, -/area/hydroponics) -"aBq" = ( -/obj/item/device/radio/intercom{ - pixel_y = -28 - }, -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"aBr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aBs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"aBt" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/library) -"aBu" = ( -/obj/machinery/holoplant, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/camera/network/research/xenobio{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aBv" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/weapon/paper, -/turf/simulated/floor/carpet, -/area/library) -"aBw" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_research{ - name = "Research Staircase" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"aBx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aBy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hydroponics/cafegarden) -"aBz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aBA" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aBB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aBC" = ( -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - pixel_y = -22 - }, -/obj/structure/table/woodentable, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aBD" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/machinery/appliance/mixer/cereal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aBE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aBF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aBG" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/grass, -/area/hydroponics) -"aBH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/structure/bed/chair, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aBI" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aBJ" = ( -/obj/structure/kitchenspike, -/obj/machinery/alarm/freezer{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"aBK" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/borderfloorblack, -/obj/machinery/door/airlock/glass_research{ - frequency = 1392; - icon_state = "door_locked"; - id_tag = "xenobiology_north_airlock_inner"; - locked = 1; - name = "Xenobiology North Airlock" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/access_button/airlock_interior{ - frequency = 1392; - master_tag = "xenobiology_north_airlock_control"; - name = "Xenobiology Access Control"; - pixel_y = -24; - req_one_access = list(47,55) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aBL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aBM" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aBN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aBO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aBP" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/signnew/secure, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 32; - d2 = 4; - icon_state = "32-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aBQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aBR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aBS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/machinery/camera/network/research, -/obj/structure/bed/chair, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aBT" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/ai_status_display{ - pixel_y = 30 - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aBU" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aBV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aBW" = ( -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aBX" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aBY" = ( -/obj/structure/sign/department/sci{ - pixel_x = -32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aBZ" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aCa" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aCb" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper{ - desc = ""; - info = "This is a direct notice to anyone using firing range: All tests involving destruction of testing facilities MUST be run through Research Director or Central Command before anyone even so much as thinks about going through with this, or be moved outside to where test cannot affect any existing facility. This is both to maintain a professional environment, and ensure nobody else is harmed during these experiments. Nobody wants another 'two SM shards going nuclear in the firing range' incident again, especially not the people handling your paychecks."; - name = "note to science staff" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aCc" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aCd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - frequency = 1392; - id_tag = "xenobiology_north_airlock_control"; - name = "Xenobiology Access Controller"; - pixel_y = -24; - req_one_access = list(47,55); - tag_exterior_door = "xenobiology_north_airlock_outer"; - tag_interior_door = "xenobiology_north_airlock_inner" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aCe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aCf" = ( -/obj/machinery/appliance/mixer/candy, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aCg" = ( -/obj/structure/table/woodentable, -/obj/machinery/light, -/obj/item/weapon/packageWrap, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aCh" = ( -/obj/machinery/door/airlock{ - name = "Service"; - req_one_access = list(35,28) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aCi" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aCj" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aCk" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/sinpockets, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aCl" = ( -/obj/structure/table/rack/steel, -/turf/simulated/floor/tiled, -/area/hydroponics) -"aCm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aCn" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"aCo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/botanystorage) -"aCp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/botanystorage) -"aCq" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aCr" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aCs" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aCt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aCu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westright{ - name = "Robotics Desk"; - req_access = list(7); - req_one_access = list(47) - }, -/obj/item/weapon/paper_bin{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aCv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aCw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aCx" = ( -/obj/structure/table/reinforced, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aCy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aCz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aCA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aCB" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aCC" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/mask/smokable/pipe/cobpipe, -/obj/item/clothing/mask/smokable/cigarette/joint, -/obj/item/weapon/flame/lighter/random, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aCD" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aCE" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aCF" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/library) -"aCG" = ( -/obj/machinery/bookbinder, -/turf/simulated/floor/wood, -/area/library) -"aCH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Library Conference Room" - }, -/turf/simulated/floor/wood, -/area/library) -"aCI" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/grass, -/area/hydroponics) -"aCJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aCK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aCL" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Surface Civilian Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"aCM" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/woodentable, -/obj/item/device/tvcamera, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 6 - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/library/study) -"aCN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/mauve/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aCO" = ( -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aCP" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"aCQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"aCR" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/grass, -/area/hydroponics) -"aCS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) -"aCT" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aCU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aCV" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aCW" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aCX" = ( -/obj/machinery/seed_storage/garden, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aCY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_three) -"aCZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_three) -"aDa" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) -"aDb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_three) -"aDc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_three) -"aDd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/bench/wooden, -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) -"aDe" = ( -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) -"aDf" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) -"aDg" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDi" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDk" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDo" = ( -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/obj/machinery/camera/network/research/xenobio{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aDp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aDq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_three) -"aDr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDs" = ( -/turf/simulated/open, -/area/tether/surfacebase/public_garden_three) -"aDt" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/material/minihoe, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/device/analyzer/plant_analyzer, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDu" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDv" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDw" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_three) -"aDz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_three) -"aDA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/table/woodentable, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDC" = ( -/obj/item/bee_pack, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/weapon/tool/crowbar, -/obj/item/bee_smoker, -/obj/item/beehive_assembly, -/obj/structure/closet/crate/hydroponics{ - desc = "All you need to start your own honey farm."; - name = "beekeeping crate" - }, -/obj/item/beehive_assembly, -/obj/item/beehive_assembly, -/obj/item/beehive_assembly, -/obj/item/beehive_assembly, -/obj/item/bee_pack, -/obj/item/bee_pack, -/obj/item/bee_pack, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aDD" = ( -/obj/structure/table/bench/wooden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDF" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_three) -"aDG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDH" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 32; - icon_state = "32-1" - }, -/turf/simulated/open, -/area/tether/surfacebase/public_garden_three) -"aDI" = ( -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/grass, -/area/hydroponics) -"aDJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDL" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/light, -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) -"aDM" = ( -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aDN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDO" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_three) -"aDQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_three) -"aDR" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aDS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_three) -"aDT" = ( -/obj/machinery/light, -/obj/structure/table/bench/wooden, -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) -"aDU" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/weapon/paperplane, -/obj/machinery/camera/network/research/xenobio, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aDV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Service"; - sortType = "Service" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aDW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aDX" = ( -/obj/machinery/smartfridge, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aDY" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/grass, -/area/hydroponics) -"aDZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aEa" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access = list(19) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aEb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aEc" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = list(57) - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aEd" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "DRAMATIC"; - name = "Dramatic Blast Door" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "draama"; - name = "Mystery Window" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "draama"; - name = "Mystery Window" - }, -/obj/machinery/door/blast/shutters{ - id = "Druma"; - layer = 3.3; - name = "Entertainment Shutters" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/entertainment) -"aEe" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27 - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/folder/red, -/obj/item/weapon/folder/blue, -/obj/item/weapon/pen, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aEf" = ( -/obj/machinery/recharge_station, -/obj/machinery/camera/network/research/xenobio, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aEg" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aEh" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/grass, -/area/hydroponics) -"aEi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aEj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/commandmaint) -"aEk" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/machinery/camera/network/civilian, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/item/weapon/shovel/spade, -/obj/item/weapon/storage/belt/utility, -/obj/item/stack/material/sandstone{ - amount = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aEl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aEm" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aEn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aEo" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aEp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aEq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aEr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aEs" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_one_access = list(47,55) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aEt" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "xenobiolockdown"; - name = "Xenobiology Lockdown Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aEu" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/library) -"aEv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/commandmaint) -"aEw" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aEx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/botanystorage) -"aEy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "xenobiolockdown"; - name = "Xenobiology Lockdown Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aEz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/library) -"aEA" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_three_hall) -"aEB" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aEC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bookcase{ - name = "bookcase (Adult)" - }, -/turf/simulated/floor/wood, -/area/library) -"aED" = ( -/obj/structure/bookcase{ - name = "bookcase (Fiction)" - }, -/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke, -/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath, -/obj/item/weapon/book/custom_library/fiction/myrock, -/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones, -/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart, -/turf/simulated/floor/wood, -/area/library) -"aEE" = ( -/obj/structure/bookcase{ - name = "bookcase (Adult)" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/library) -"aEF" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aEG" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/carpet, -/area/library) -"aEH" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bookcase/bookcart, -/turf/simulated/floor/wood, -/area/library) -"aEI" = ( -/obj/structure/bookcase{ - name = "bookcase (Non-Fiction)" - }, -/obj/item/weapon/book/codex/lore/robutt, -/obj/item/weapon/book/codex, -/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs, -/turf/simulated/floor/wood, -/area/library) -"aEJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/library) -"aEK" = ( -/obj/random/tech_supply, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/item/stack/cable_coil/random, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"aEL" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/item/weapon/shovel/spade, -/obj/item/weapon/storage/belt/utility, -/obj/item/stack/material/sandstone{ - amount = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aEM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aEN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aEO" = ( -/obj/structure/cable/orange, -/obj/structure/cable/orange{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Surface Civilian Subgrid"; - name_tag = "Surface Civilian Subgrid" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"aEP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/library) -"aEQ" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/library) -"aER" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/library) -"aES" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aET" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aEU" = ( -/turf/simulated/floor/carpet, -/area/library) -"aEV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/library) -"aEW" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aEX" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aEY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aEZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/grass, -/area/hydroponics) -"aFa" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics Storage"; - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFb" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/tool/wrench, -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/library) -"aFd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, -/obj/item/weapon/book/custom_library/religious/feastofkubera, -/obj/item/weapon/book/custom_library/religious/storyoflordganesha, -/obj/item/weapon/book/custom_library/religious/sungoddessofkorea, -/obj/item/weapon/book/custom_library/religious/wayofbleedingswan, -/turf/simulated/floor/wood, -/area/library) -"aFe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"aFf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aFg" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"aFi" = ( -/obj/structure/table/glass, -/obj/machinery/cell_charger, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"aFj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/guestpass{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aFk" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/material/knife, -/obj/item/weapon/material/knife, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/weapon/material/minihoe, -/obj/item/weapon/material/minihoe, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aFn" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/library) -"aFo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - frequency = 1392; - icon_state = "door_locked"; - id_tag = "xenobiology_north_airlock_outer"; - locked = 1; - name = "Xenobiology North Airlock" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/access_button/airlock_interior{ - command = "cycle_exterior"; - frequency = 1392; - master_tag = "xenobiology_north_airlock_control"; - name = "Xenobiology Access Control"; - pixel_y = -24; - req_one_access = list(47,55) - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aFp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/borderfloorblack, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aFq" = ( -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/clothing/gloves/fyellow, -/obj/item/weapon/book{ - author = "Urist McHopefulsoul"; - desc = "It contains fourty blank pages followed by the entire screenplay of a movie called 'Requiem for a Dream'"; - name = "A Comprehensive Guide to Assisting" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/shuttle_pad) -"aFr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/library) -"aFs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/library) -"aFt" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/library) -"aFu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Librarian" - }, -/turf/simulated/floor/carpet, -/area/library) -"aFv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/robotics) -"aFw" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/structure/window/reinforced, -/obj/machinery/camera/network/research{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aFx" = ( -/obj/item/clothing/under/color/grey, -/obj/item/clothing/mask/gas/wwii, -/obj/item/weapon/storage/belt/utility/full, -/turf/simulated/floor/plating, -/area/tether/surfacebase/shuttle_pad) -"aFy" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"aFz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"aFA" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/bar_light, -/area/tether/surfacebase/barbackmaintenance) -"aFB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFC" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aFD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFE" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFF" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/machinery/camera/network/research/xenobio{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aFG" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/newscaster{ - pixel_x = 25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aFJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/borderfloorblack, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aFK" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aFL" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/sign/signnew/secure, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aFM" = ( -/turf/simulated/wall, -/area/tether/surfacebase/servicebackroom) -"aFN" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/item/weapon/storage/bag/trash, -/obj/item/weapon/storage/bag/trash, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aFO" = ( -/obj/machinery/door/airlock{ - name = "Service"; - req_one_access = list(35,28) - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aFP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aFQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aFR" = ( -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aFS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aFT" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/structure/closet/hydrant{ - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aFU" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet, -/area/library) -"aFV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/robotics) -"aFW" = ( -/obj/machinery/optable{ - name = "Robotics Operating Table" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled/dark, -/area/rnd/robotics/surgeryroom2) -"aFX" = ( -/obj/random/tech_supply, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"aFY" = ( -/obj/machinery/button/windowtint{ - id = "draama"; - layer = 3.3; - name = "Mystery Window Tint Control"; - pixel_x = 3; - pixel_y = -29; - range = 10 - }, -/obj/machinery/button/remote/blast_door{ - id = "DRAMATIC"; - name = "Dramatic Blast Doors"; - pixel_x = 24; - pixel_y = -10 - }, -/obj/machinery/button/remote/blast_door{ - id = "Druma"; - name = "Entertainment Shutter Control"; - pixel_x = 24; - pixel_y = 10 - }, -/obj/item/weapon/stool/padded, -/obj/effect/landmark/start{ - name = "Entertainer" - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"aFZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"aGa" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aGb" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aGc" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aGd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/requests_console{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aGe" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aGf" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aGg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/civilian, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aGh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/freezer{ - name = "Kitchen"; - req_access = list(28) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aGi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/appliance/cooker/fryer, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aGj" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aGk" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"aGl" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/goggles, -/obj/structure/window/reinforced, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aGm" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aGn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/floor_decal/borderfloorblack, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aGo" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1382; - icon_state = "door_locked"; - id_tag = "xenobiology_airlock_outer"; - locked = 1; - name = "Xenobiology Exterior Airlock Doors"; - req_one_access = list(47,55) - }, -/obj/machinery/access_button/airlock_interior{ - command = "cycle_exterior"; - frequency = 1382; - master_tag = "xenobiology_airlock_control"; - name = "Xenobiology Access Control"; - pixel_x = -24; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aGp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aGq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aGr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aGs" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1382; - icon_state = "door_locked"; - id_tag = "xenobiology_airlock_outer"; - locked = 1; - name = "Xenobiology Exterior Airlock Doors"; - req_one_access = list(47,55) - }, -/obj/machinery/access_button/airlock_interior{ - command = "cycle_exterior"; - frequency = 1382; - master_tag = "xenobiology_airlock_control"; - name = "Xenobiology Access Control"; - pixel_x = 24; - pixel_y = 4; - req_one_access = list(47,55) - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aGt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"aGu" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aGv" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aGw" = ( -/obj/structure/bookcase{ - name = "bookcase (Reference)" - }, -/obj/item/weapon/book/manual/hydroponics_pod_people, -/obj/item/weapon/book/manual/mass_spectrometry, -/obj/item/weapon/book/manual/materials_chemistry_analysis, -/obj/item/weapon/book/manual/medical_cloning, -/obj/item/weapon/book/manual/medical_diagnostics_manual, -/obj/item/weapon/book/manual/research_and_development, -/obj/item/weapon/book/manual/resleeving, -/obj/item/weapon/book/manual/ripley_build_and_repair, -/obj/item/weapon/book/manual/robotics_cyborgs, -/obj/item/weapon/book/manual/rust_engine, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/stasis, -/obj/item/weapon/book/manual/supermatter_engine, -/turf/simulated/floor/wood, -/area/library) -"aGx" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"aGy" = ( -/obj/structure/railing, -/obj/structure/grille, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/lower/third_south) -"aGz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Bar Substation" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"aGA" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aGB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aGC" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aGD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aGE" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "DRAMATIC"; - name = "Dramatic Blast Door" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "draama"; - name = "Mystery Window" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "draama"; - name = "Mystery Window" - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "Druma"; - layer = 3.3; - name = "Entertainment Shutters" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/entertainment) -"aGF" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aGG" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aGH" = ( -/obj/structure/table/woodentable, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aGI" = ( -/obj/machinery/vending/cola/soft, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aGJ" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aGK" = ( -/turf/simulated/wall, -/area/crew_quarters/barrestroom) -"aGL" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 10 - }, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aGM" = ( -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aGN" = ( -/obj/structure/window/basic/full, -/obj/structure/grille, -/obj/structure/window/basic, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aGP" = ( -/obj/structure/sign/nanotrasen, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aGQ" = ( -/turf/simulated/wall/r_wall, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aGR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aGS" = ( -/obj/machinery/r_n_d/circuit_imprinter{ - dir = 8 - }, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aGT" = ( -/obj/machinery/mecha_part_fabricator/pros{ - dir = 1 - }, -/obj/structure/reagent_dispensers/acid{ - density = 0; - pixel_y = -30 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aGU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aGV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aGW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aGX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aGY" = ( -/obj/item/weapon/tape_roll, -/obj/item/weapon/packageWrap, -/obj/item/weapon/dice, -/obj/item/weapon/dice/d20, -/obj/item/weapon/deck/cards, -/obj/item/weapon/folder/yellow, -/obj/structure/closet/walllocker_double{ - dir = 8; - pixel_x = -28 - }, -/obj/item/weapon/storage/pill_bottle/dice, -/obj/item/weapon/storage/pill_bottle/dice_nerd, -/turf/simulated/floor/wood, -/area/library) -"aGZ" = ( -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHa" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHb" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/library) -"aHd" = ( -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/simulated/floor/carpet, -/area/library) -"aHe" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aHf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHg" = ( -/obj/structure/bookcase{ - name = "bookcase (Reference)" - }, -/obj/item/weapon/book/manual/anomaly_spectroscopy, -/obj/item/weapon/book/manual/anomaly_testing, -/obj/item/weapon/book/manual/atmospipes, -/obj/item/weapon/book/manual/barman_recipes, -/obj/item/weapon/book/manual/chef_recipes, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/detective, -/obj/item/weapon/book/manual/engineering_construction, -/obj/item/weapon/book/manual/engineering_guide, -/obj/item/weapon/book/manual/engineering_particle_accelerator, -/obj/item/weapon/book/manual/engineering_singularity_safety, -/obj/item/weapon/book/manual/evaguide, -/obj/item/weapon/book/manual/excavation, -/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide, -/turf/simulated/floor/wood, -/area/library) -"aHh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/camera/network/research{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aHk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHl" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/flame/candle, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aHm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHn" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aHo" = ( -/obj/machinery/light, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aHp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aHq" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aHr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/sign/department/bar, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) -"aHs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aHt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHu" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/crew_quarters/bar) -"aHv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"aHw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aHx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aHy" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aHz" = ( -/obj/structure/device/piano, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"aHA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aHB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/table/marble, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aHC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"aHD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/robotics) -"aHE" = ( -/obj/structure/window/basic/full, -/obj/structure/grille, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aHF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aHG" = ( -/obj/machinery/autolathe{ - dir = 1; - hacked = 1 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aHH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aHI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aHJ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access = list(29,47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aHL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aHM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aHN" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Robotics"; - sortType = "Robotics" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aHO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aHP" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/light, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aHQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHS" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/machinery/alarm{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - pixel_x = 22; - pixel_y = -7; - report_danger_level = 0 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aHT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHU" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/structure/closet/l3closet/scientist, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aHW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aHZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIc" = ( -/obj/machinery/computer/timeclock/premade/east, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/beige/bordercorner2{ - dir = 5 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aId" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"aIe" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"aIf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aIg" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aIh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aIi" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aIj" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aIk" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aIl" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aIm" = ( -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aIn" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aIo" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/item/weapon/stool/padded, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aIp" = ( -/obj/structure/flora/pottedplant/unusual, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aIq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/recharge_station, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aIr" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1382; - icon_state = "door_locked"; - id_tag = "xenobiology_airlock_inner"; - locked = 1; - name = "Xenobiology Interior Airlock Doors"; - req_one_access = list(47,55) - }, -/obj/machinery/access_button/airlock_interior{ - frequency = 1382; - master_tag = "xenobiology_airlock_control"; - name = "Xenobiology Access Control"; - pixel_x = -24; - pixel_y = 4; - req_one_access = list(47,55) - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aIs" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1382; - icon_state = "door_locked"; - id_tag = "xenobiology_airlock_inner"; - locked = 1; - name = "Xenobiology Interior Airlock Doors"; - req_one_access = list(47,55) - }, -/obj/machinery/access_button/airlock_interior{ - frequency = 1382; - master_tag = "xenobiology_airlock_control"; - name = "Xenobiology Access Control"; - pixel_x = 24; - pixel_y = 4; - req_one_access = list(47,55) - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aIt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aIu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aIv" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aIw" = ( -/turf/simulated/wall, -/area/rnd/robotics/mechbay) -"aIx" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sign/department/robo{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIz" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIA" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIB" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIC" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aID" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIE" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/library) -"aIF" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"aIG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIH" = ( -/obj/structure/table/marble, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aII" = ( -/obj/structure/sign/department/bar{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIJ" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aIK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aIL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aIM" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aIN" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aIO" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aIP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aIQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Bartender" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"aIR" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aIS" = ( -/obj/machinery/vending/cigarette{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aIT" = ( -/obj/machinery/alarm{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aIU" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aIV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aIW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aIX" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "xenobiolockdown"; - name = "Xenobiology Lockdown Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aIY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aIZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "xenobiolockdown"; - name = "Xenobiology Lockdown Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aJa" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "xenobiolockdown"; - name = "Xenobiology Lockdown Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - frequency = 1382; - id_tag = "xenobiology_airlock_control"; - name = "Xenobiology Access Controller"; - pixel_x = 25; - tag_exterior_door = "xenobiology_airlock_outer"; - tag_interior_door = "xenobiology_airlock_inner" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aJb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aJc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aJd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aJe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aJf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aJg" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "mechbay"; - name = "Mech Bay" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aJh" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aJi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aJj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aJk" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aJl" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/beakers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aJm" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aJn" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/hallway/lower/third_south) -"aJo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_external/public, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aJp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_external/public, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aJq" = ( -/obj/structure/bed/chair/comfy, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aJr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aJs" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor/tiled/techmaint, -/area/crew_quarters/bar) -"aJt" = ( -/turf/simulated/wall, -/area/tether/surfacebase/bar_backroom) -"aJu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aJv" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/table/marble, -/obj/machinery/recharger, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aJw" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"aJx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aJy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aJz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aJA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aJB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aJC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aJD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aJE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aJF" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aJG" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aJH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aJI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aJJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aJK" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aJL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aJM" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aJN" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aJO" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aJP" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aJQ" = ( -/obj/machinery/recharge_station, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aJR" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aJS" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_x = -64 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aJT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/robotics/mechbay) -"aJU" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/robotics/mechbay) -"aJV" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/packageWrap, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hydroponics) -"aJW" = ( -/turf/simulated/wall, -/area/rnd/robotics/surgeryroom2) -"aJX" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aJY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aJZ" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/industrial/danger/corner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKa" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKb" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - id = "kitchen2"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aKd" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKe" = ( -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"aKf" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/tether/surfacebase/shuttle_pad) -"aKg" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKj" = ( -/turf/simulated/wall, -/area/tether/surfacebase/shuttle_pad) -"aKk" = ( -/obj/machinery/optable{ - name = "Robotics Operating Table" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled/dark, -/area/rnd/robotics/surgeryroom1) -"aKl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aKm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aKn" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "atrium" - }, -/turf/simulated/floor/tiled/techmaint, -/area/crew_quarters/bar) -"aKo" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aKp" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aKq" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"aKr" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aKs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"aKt" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Garden"; - req_access = list(28) - }, -/turf/simulated/floor/tiled/freezer, -/area/hydroponics/cafegarden) -"aKu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aKv" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aKw" = ( -/obj/machinery/light, -/mob/living/simple_mob/animal/passive/chicken, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"aKx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aKy" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aKz" = ( -/obj/structure/window/basic/full, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aKA" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Xenobiology First Aid"; - req_one_access = list(5,47) - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aKB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aKC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aKD" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/brigdoor/southleft{ - req_access = list(47); - req_one_access = list(47) - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aKF" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/goggles, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aKG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/goggles, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aKH" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/goggles, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aKI" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/tether/surfacebase/shuttle_pad) -"aKJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/structure/disposalpipe/sortjunction{ - name = "HOS Office"; - sortType = "HOS Office" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aKK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aKL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - id = "mechbay-inner"; - name = "Mech Bay" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aKM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aKN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aKO" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/bluegrid, -/area/rnd/robotics/mechbay) -"aKP" = ( -/turf/simulated/floor/bluegrid, -/area/rnd/robotics/mechbay) -"aKQ" = ( -/obj/machinery/mech_recharger, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/robotics/mechbay) -"aKR" = ( -/obj/structure/closet/secure_closet/medical_wall/anesthetics{ - pixel_x = -32; - req_access = list(); - req_one_access = list(29,45) - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/button/windowtint{ - id = "robo_surg_2"; - pixel_y = 25 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom2) -"aKS" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom2) -"aKT" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKU" = ( -/turf/simulated/floor/reinforced, -/area/tether/surfacebase/shuttle_pad) -"aKV" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aKY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aKZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aLa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aLb" = ( -/obj/structure/closet/crate, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aLc" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aLd" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aLe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "freezer"; - name = "Freezer Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/freezer) -"aLf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aLg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aLh" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aLi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aLj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aLk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aLl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aLm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aLn" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aLo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aLp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aLq" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/paper{ - desc = ""; - info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management"; - name = "note to science staff" - }, -/obj/item/device/robotanalyzer, -/obj/item/device/robotanalyzer, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom2) -"aLr" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "robo_surg_2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom2) -"aLs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aLt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aLu" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"aLv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aLw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aLx" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular{ - id = "mechbay-inner"; - name = "Mech Bay" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aLy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aLz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aLA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_external/public, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aLB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_external/public, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aLC" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aLD" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aLE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aLF" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aLG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aLH" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "serviceblock2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aLI" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aLJ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/sinpockets, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aLK" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 1; - id = "serviceblock2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aLL" = ( -/turf/simulated/open, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aLM" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/open, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aLN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aLO" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Equipment Storage"; - req_one_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aLP" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/simulated/floor/wood, -/area/library) -"aLQ" = ( -/obj/machinery/alarm{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - pixel_x = 22; - report_danger_level = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aLR" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_one_access = list(47,55) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aLS" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aLT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aLU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid, -/area/rnd/robotics/mechbay) -"aLV" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/robotics/mechbay) -"aLW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"aLX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom2) -"aLY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom2) -"aLZ" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Surgery Room"; - req_one_access = list(29,47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom2) -"aMa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aMb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/orange{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aMc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aMd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aMe" = ( -/obj/structure/cable/orange{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"aMf" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "tether_pad_airlock"; - pixel_y = 28; - tag_door = "tether_pad_hatch" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "tether_pad_sensor"; - pixel_x = -11; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aMg" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aMh" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aMi" = ( -/obj/structure/flora/pottedplant/unusual, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aMj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aMk" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/library) -"aMl" = ( -/turf/simulated/open, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aMm" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/flora/pottedplant/unusual, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aMn" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/device/radio/phone, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aMo" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aMp" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aMq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_x = 30; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aMr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aMs" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/binary/passive_gate/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"aMt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aMu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "mechbay-inner"; - name = "Mech Bay"; - pixel_x = 26; - pixel_y = -26; - req_access = list(29,47); - req_one_access = list(47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aMv" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - id = "mechbay-inner"; - name = "Mech Bay" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aMw" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -25 - }, -/obj/machinery/vending/wallmed1/public{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aMx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "mechbay-inner"; - name = "Mech Bay"; - pixel_x = -26; - pixel_y = -26; - req_access = list(29,47); - req_one_access = list(47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aMy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aMz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom2) -"aMA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/orange{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aMB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"aMD" = ( -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"aME" = ( -/turf/simulated/shuttle/wall, -/area/shuttle/tether) -"aMF" = ( -/obj/structure/shuttle/window, -/obj/structure/grille, -/turf/simulated/shuttle/plating/airless, -/area/shuttle/tether) -"aMG" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aMH" = ( -/obj/structure/flora/pottedplant/crystal, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aMI" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aMJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/sink/kitchen{ - name = "sink"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aMK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aML" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aMM" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aMN" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aMO" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aMP" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom2) -"aMQ" = ( -/obj/structure/table/standard, -/obj/item/device/defib_kit/jumper_kit, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom2) -"aMR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aMS" = ( -/obj/machinery/vending/fitness, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"aMT" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aMU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"aMV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aMW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aMX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aMY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"aMZ" = ( -/obj/structure/closet/firecloset, -/turf/simulated/shuttle/floor/black, -/area/shuttle/tether) -"aNa" = ( -/obj/machinery/computer/shuttle_control/tether_backup{ - req_one_access = list() - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/tether) -"aNb" = ( -/obj/structure/closet/emcloset, -/turf/simulated/shuttle/floor/black, -/area/shuttle/tether) -"aNc" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aNd" = ( -/obj/structure/table/glass, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aNe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aNf" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aNg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aNh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aNi" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/shuttle_pad) -"aNj" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/simulated/wall, -/area/tether/surfacebase/shuttle_pad) -"aNk" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/tether) -"aNl" = ( -/turf/simulated/shuttle/floor/black, -/area/shuttle/tether) -"aNm" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "tether_shuttle"; - pixel_x = 25; - tag_door = "tether_shuttle_hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/tether) -"aNn" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aNo" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aNp" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aNq" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/blood, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aNr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/target_stake, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aNs" = ( -/obj/machinery/cryopod/robot, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aNt" = ( -/obj/machinery/cryopod/robot, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"aNu" = ( -/obj/machinery/computer/cryopod/robot{ - dir = 1; - pixel_y = -28 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/robotics/mechbay) -"aNv" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/robotics/mechbay) -"aNw" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/robotics/mechbay) -"aNx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aNy" = ( -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 10 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aNz" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "tether_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/tether) -"aNA" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aNB" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aNC" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/perfect_tele{ - desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Site Manager's, and they are authorized to use it."; - name = "manager's translocator" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aND" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aNE" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aNF" = ( -/turf/simulated/wall, -/area/rnd/robotics/surgeryroom1) -"aNG" = ( -/obj/structure/cable/orange{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/shuttle_pad) -"aNH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aNI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25; - target_temperature = 270 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aNJ" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/tether) -"aNK" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/tether) -"aNL" = ( -/obj/structure/window/basic/full, -/obj/structure/grille, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aNM" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aNN" = ( -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/shuttle_pad) -"aNO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aNP" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless, -/area/shuttle/tether) -"aNQ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/open, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aNR" = ( -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aNS" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aNT" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aNU" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aNV" = ( -/obj/structure/sign/department/xenolab, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aNW" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aNX" = ( -/obj/structure/closet/hydrant{ - pixel_y = -32 - }, -/turf/simulated/wall, -/area/tether/surfacebase/shuttle_pad) -"aNY" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "hangarsurface"; - name = "Engine Repair Bay"; - pixel_y = -25 - }, -/turf/simulated/floor/reinforced, -/area/tether/surfacebase/shuttle_pad) -"aNZ" = ( -/obj/structure/sign/xenobio, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aOa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aOb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aOc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aOd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aOe" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aOf" = ( -/turf/simulated/wall/r_wall, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aOg" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aOh" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aOi" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aOj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOk" = ( -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOl" = ( -/obj/machinery/ion_engine, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOm" = ( -/obj/structure/railing, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aOn" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aOo" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aOp" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aOq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aOr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aOs" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aOt" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aOu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aOv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aOw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"aOx" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aOy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance/common{ - name = "Engine Repair Bay" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aOE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aOF" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aOG" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aOH" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aOI" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aOJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aOK" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aOL" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aOM" = ( -/obj/structure/table/steel, -/obj/random/tech_supply, -/obj/random/tool, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aON" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/tech_supply, -/obj/item/stack/cable_coil/random, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOP" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/item/clothing/glasses/welding, -/obj/item/weapon/weldingtool, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aOQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aOR" = ( -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_office) -"aOS" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/closet/radiation, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aOT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aOU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/command, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aOV" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/weapon/surgical/scalpel, -/obj/item/weapon/surgical/cautery, -/obj/item/weapon/autopsy_scanner, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aOW" = ( -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aOX" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aOY" = ( -/obj/structure/window/basic/full, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aOZ" = ( -/obj/machinery/newscaster, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPa" = ( -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"aPb" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/shuttle_pad) -"aPc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"aPd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aPe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/command{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aPf" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aPg" = ( -/obj/machinery/computer/area_atmos/tag{ - scrub_id = "xeno_phoron_pen_scrubbers" - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aPh" = ( -/obj/machinery/computer/security/xenobio, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aPi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Site Manager" - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "cap_office"; - name = "Security Shutters"; - pixel_x = 30; - pixel_y = 16 - }, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aPj" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aPk" = ( -/obj/machinery/camera/network/command, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aPl" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPm" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPn" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aPp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/command, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aPq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aPr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aPs" = ( -/turf/simulated/wall, -/area/tether/surfacebase/southhall) -"aPt" = ( -/obj/machinery/light/small, -/obj/item/weapon/tank/phoron, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"aPu" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"aPv" = ( -/obj/structure/window/basic/full, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_office) -"aPw" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aPx" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiolockdown"; - name = "Xenobiology Lockdown Control"; - pixel_x = -35; - req_one_access = list(47,55) - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aPy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aPz" = ( -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aPA" = ( -/obj/structure/table/glass, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/storage/box/masks, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aPB" = ( -/obj/machinery/vending/snack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPC" = ( -/obj/machinery/computer/communications{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/command{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aPD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aPE" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 10 - }, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPF" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "serviceblock2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aPG" = ( -/obj/random/mob/mouse, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPK" = ( -/obj/structure/window/basic/full, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPL" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"aPM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"aPN" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aPO" = ( -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aPP" = ( -/obj/structure/sign/department/xenolab, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_office) -"aPQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aPR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aPS" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aPT" = ( -/obj/structure/sign/department/xenolab, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPU" = ( -/obj/machinery/vending/fitness{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPV" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aPW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPY" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/orange{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"aQa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"aQb" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQc" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQd" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/open, -/area/tether/surfacebase/north_stairs_three) -"aQe" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aQf" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"aQg" = ( -/obj/machinery/vending/cola{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQj" = ( -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQk" = ( -/obj/machinery/computer/arcade, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQl" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Xenobiology"; - sortType = "Xenobiology" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aQo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aQq" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Office"; - req_one_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/rnd/outpost/xenobiology/outpost_office) -"aQr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aQs" = ( -/obj/machinery/door/airlock/glass_science{ - name = "Break Room" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQu" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQv" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQw" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQx" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aQB" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aQC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aQD" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/outside{ - dir = 9 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aQE" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donut, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aQG" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQH" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/stack/material/phoron{ - amount = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/syringe, -/obj/item/weapon/reagent_containers/syringe, -/obj/item/weapon/reagent_containers/syringe, -/obj/item/weapon/reagent_containers/syringe, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQI" = ( -/obj/structure/bed/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQL" = ( -/obj/machinery/vending/coffee{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQM" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aQN" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQO" = ( -/obj/structure/table/woodentable, -/obj/random/plushie, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQP" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aQR" = ( -/obj/structure/table/glass, -/obj/item/bodybag, -/obj/item/device/healthanalyzer, -/obj/random/medical, -/obj/structure/closet/medical_wall{ - pixel_y = 35 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aQS" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQT" = ( -/obj/structure/flora/pottedplant/crystal, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aQU" = ( -/obj/machinery/camera/network/outside{ - dir = 9 - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aQV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/machinery/light, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQW" = ( -/obj/machinery/camera/network/outside{ - dir = 1 - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aQX" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aQY" = ( -/obj/machinery/light, -/obj/machinery/media/jukebox, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aQZ" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Xenobiology"; - sortType = "Xenobiology" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aRa" = ( -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRb" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Office"; - req_one_access = list(55) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRc" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aRd" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aRe" = ( -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Showers and Decontamination"; - req_one_access = list(47) - }, -/turf/simulated/floor/tiled/steel, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRg" = ( -/obj/machinery/optable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRh" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/outside{ - dir = 5 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aRi" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRk" = ( -/obj/structure/table/standard, -/obj/item/toy/plushie/coffee_fox, -/obj/item/clothing/glasses/welding, -/obj/item/weapon/weldingtool, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aRl" = ( -/obj/machinery/newscaster, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRm" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "serviceblock2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aRn" = ( -/obj/machinery/newscaster, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aRp" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRq" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRr" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower, -/obj/random/soap, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRs" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 8 - }, -/obj/random/soap, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRt" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aRu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRv" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRw" = ( -/obj/structure/table/standard, -/obj/item/weapon/extinguisher, -/obj/item/clothing/shoes/galoshes, -/obj/item/clothing/shoes/galoshes, -/obj/item/weapon/extinguisher, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aRx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRy" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Autopsy Room"; - req_one_access = list(55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aRA" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/beakers, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aRB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Showers and Decontamination" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRF" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRG" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aRH" = ( -/obj/structure/sink/kitchen{ - name = "sink"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"aRK" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aRL" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRM" = ( -/obj/structure/table/standard, -/obj/item/toy/plushie/purple_fox, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aRN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aRO" = ( -/obj/item/device/radio/intercom, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRP" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Autopsy Room"; - req_one_access = list(55) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRQ" = ( -/obj/structure/sign/department/xenolab, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRR" = ( -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aRS" = ( -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aRT" = ( -/obj/structure/sign/department/xenolab, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Showers and Decontamination" - }, -/turf/simulated/floor/tiled/steel, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRV" = ( -/obj/item/device/radio/intercom, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_decon) -"aRW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aRX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aRY" = ( -/obj/structure/bed/roller, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aRZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aSa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aSb" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aSc" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aSd" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aSe" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aSf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aSg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aSh" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aSi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay foyer."; - dir = 1; - id = "MedbayTriage"; - name = "Medbay Doors Control"; - pixel_x = -25; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"aSj" = ( -/obj/structure/window/basic/full, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_main) -"aSk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/alarm{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - pixel_x = 22; - pixel_y = -7; - report_danger_level = 0 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 23; - pixel_y = 13 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"aSl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aSm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/medical{ - name = "Medical Admin Access" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppersouthstairwell) -"aSn" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/admin) -"aSo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aSp" = ( -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aSq" = ( -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/adv, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aSr" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 32; - icon_state = "32-1" - }, -/obj/structure/window/basic/full, -/obj/structure/grille, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/disposalpipe/down{ - dir = 1 - }, -/turf/simulated/open, -/area/rnd/outpost/xenobiology/outpost_stairs) -"aSs" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"aSt" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aSu" = ( -/obj/effect/landmark{ - name = "droppod_landing" - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"aSv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aSw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"aSx" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aSy" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aSz" = ( -/obj/structure/window/basic/full, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_main) -"aSA" = ( -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aSB" = ( -/obj/structure/window/basic/full, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aSC" = ( -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -25; - pixel_y = -7 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aSD" = ( -/obj/structure/sign/redcross, -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aSE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - pixel_x = 22; - report_danger_level = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aSF" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/librarypubliccomp, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/library) -"aSG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aSH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aSI" = ( -/turf/simulated/wall, -/area/rnd/outpost/xenobiology/outpost_storage) -"aSJ" = ( -/obj/structure/window/basic/full, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_storage) -"aSK" = ( -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/effect/floor_decal/corner/green/full, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aSL" = ( -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/fire, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aSM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "medbayfoyer" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/triage) -"aSN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Security"; - sortType = "Security" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"aSO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aSP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aSQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aSR" = ( -/obj/machinery/papershredder, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aSS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aST" = ( -/obj/machinery/hologram/holopad, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aSU" = ( -/obj/machinery/vending/medical, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aSV" = ( -/obj/machinery/vending/blood, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aSW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aSX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aSY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aSZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aTa" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aTb" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aTc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aTd" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/chemistry) -"aTe" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Weapons Testing Range"; - req_access = list(47) - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"aTf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aTg" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/carry, -/area/shuttle/tether) -"aTh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aTi" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aTj" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/weapon/paper_bin{ - pixel_x = -1; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aTk" = ( -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aTl" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/carry, -/area/shuttle/tourbus/engines) -"aTm" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/medical/admin) -"aTp" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/closet/secure_closet/medical3, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aTq" = ( -/obj/structure/table/standard, -/obj/item/device/healthanalyzer, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aTr" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"aTs" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aTt" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/command{ - req_access = list(19) - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - closed_layer = 10; - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - layer = 1; - name = "Bridge Blast Doors"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor, -/area/bridge_hallway) -"aTu" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - name = "Bridge"; - req_access = list(19) - }, -/obj/machinery/door/blast/regular{ - closed_layer = 10; - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - layer = 1; - name = "Bridge Blast Doors"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aTv" = ( -/obj/machinery/computer/station_alert/all{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aTw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aTx" = ( -/obj/structure/window/basic/full, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aTy" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "hop_office" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "hop_office" - }, -/obj/structure/cable/green{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"aTz" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "hop_office" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "hop_office" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"aTA" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aTB" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"aTC" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/device/radio{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/device/radio, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/item/device/multitool, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aTD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aTE" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"aTF" = ( -/obj/structure/closet/crate/plastic, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"aTG" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aTH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aTI" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aTJ" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "serviceblock1" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aTK" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/paper_bin{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/weapon/pen, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 10; - pixel_y = 14 - }, -/obj/item/weapon/storage/box/body_record_disk{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aTL" = ( -/obj/structure/table/standard, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aTM" = ( -/obj/machinery/oxygen_pump/anesthetic, -/turf/simulated/wall, -/area/tether/surfacebase/medical/surgery2) -"aTN" = ( -/obj/structure/table/standard, -/obj/item/stack/nanopaste, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aTO" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aTP" = ( -/obj/item/weapon/card/id/gold/captain/spare/fakespare, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"aTQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aTR" = ( -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aTS" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "serviceblock1" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aTT" = ( -/obj/machinery/door/morgue{ - dir = 2; - name = "Private Study"; - req_access = list(37) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/library/study) -"aTU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aTV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aTX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/upperhall) -"aTY" = ( -/obj/machinery/door/airlock/security{ - name = "Internal Affairs"; - req_access = list(38); - req_one_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"aUb" = ( -/obj/structure/bed/chair, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"aUc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aUd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aUe" = ( -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"aUf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aUg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aUi" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/donut, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/item/weapon/paper_bin{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aUj" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aUk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aUl" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aUm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aUn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aUo" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/hallway/lower/third_south) -"aUp" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/hallway/lower/third_south) -"aUq" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"aUr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aUs" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/machinery/computer/transhuman/designer{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aUt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aUu" = ( -/obj/item/stack/material/plastic, -/obj/structure/table/rack, -/obj/item/stack/material/steel{ - amount = 3 - }, -/obj/random/maintenance/engineering, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"aUv" = ( -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aUw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aUy" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access = list(19) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - closed_layer = 10; - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - layer = 1; - name = "Bridge Blast Doors"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aUz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aUA" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/closet/secure_closet/medical3, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aUB" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 1; - id = "serviceblock1" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aUC" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lime/bordercorner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aUD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aUF" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/obj/machinery/seed_storage/garden{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aUG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/structure/closet/crate/freezer, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/weapon/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aUH" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aUI" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aUJ" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aUK" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aUL" = ( -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aUM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/machinery/vending/hydronutrients{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aUO" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_three) -"aUP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aUR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aUS" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aUT" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aUU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/lobby) -"aUV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aUW" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aUX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry" - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Chemistry"; - req_one_access = list(33) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "chemistry"; - layer = 3.1; - name = "Chemistry Shutters" - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aUY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - dir = 1; - id = "chemistry"; - name = "Chemistry Shutters"; - pixel_x = -6; - pixel_y = -57; - req_access = list(5) - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Chemist" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aUZ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aVa" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aVb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aVc" = ( -/obj/effect/landmark/start{ - name = "Paramedic" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aVd" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "serviceblock1" - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aVe" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aVf" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry" - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Chemistry"; - req_one_access = list(33) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "chemistry"; - layer = 3.1; - name = "Chemistry Shutters" - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aVg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; - name = "Chemistry Cleaner" - }, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/packageWrap, -/obj/item/device/mass_spectrometer/adv, -/obj/item/device/mass_spectrometer/adv, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 7; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aVh" = ( -/obj/machinery/chemical_dispenser/full, -/obj/structure/table/reinforced, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aVi" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/item/device/radio/intercom{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aVj" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom/department/medbay{ - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/chemical_dispenser/biochemistry/full, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"aVk" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aVl" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aVn" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aVo" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/cups{ - pixel_x = 7; - pixel_y = 13 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aVp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"aVq" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aVr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"aVs" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - d1 = 32; - d2 = 4; - icon_state = "32-4" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/lower/mining) -"aVt" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Infirmary Lobby" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/tether/surfacebase/medical/lobby) -"aVu" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aVv" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aVw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"aVx" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) -"aVy" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aVz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"aVA" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aVB" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aVC" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"aVD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/storage) -"aVE" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aVG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aVH" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/upperhall) -"aVI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/upperhall) -"aVK" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/surface_three_hall) -"aVL" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aVN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "surfsurgery2" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/surgery2) -"aVO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aVP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aVQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aVR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aVS" = ( -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aVT" = ( -/obj/structure/table/standard, -/obj/item/device/healthanalyzer, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aVU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aVV" = ( -/obj/machinery/account_database{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aVW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"aVX" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/tether/surfacebase/surface_three_hall) -"aVY" = ( -/obj/machinery/computer/operating, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aVZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aWa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"aWb" = ( -/obj/structure/sign/directions/evac{ - dir = 4 - }, -/turf/simulated/wall, -/area/tether/surfacebase/security/upperhall) -"aWd" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aWe" = ( -/obj/structure/table/standard, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/bodybag/cryobag{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/device/radio{ - pixel_x = 7; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aWf" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"aWg" = ( -/obj/structure/sign/directions/evac{ - dir = 8 - }, -/turf/simulated/wall, -/area/tether/surfacebase/medical/lobby) -"aWh" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -4 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -10 - }, -/turf/simulated/wall, -/area/tether/surfacebase/medical/lobby) -"aWi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"aWj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aWk" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"aWl" = ( -/obj/structure/table/woodentable, -/obj/random/drinkbottle, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aWm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"aWp" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWq" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aWs" = ( -/obj/machinery/suit_cycler/prototype, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"aWt" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWv" = ( -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"aWw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWy" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aWz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atm{ - pixel_y = 31 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aWB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWC" = ( -/turf/simulated/wall, -/area/tether/surfacebase/entertainment/backstage) -"aWD" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -4 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -10 - }, -/turf/simulated/wall, -/area/tether/surfacebase/entertainment/backstage) -"aWE" = ( -/obj/structure/table/glass, -/obj/machinery/door/window/westright{ - req_one_access = list(35,28) - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hydroponics) -"aWF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"aWL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWM" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/grass, -/area/hydroponics) -"aWN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWO" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aWR" = ( -/obj/structure/table/standard, -/obj/item/weapon/gun/energy/taser/xeno, -/obj/item/weapon/melee/baton/slime/loaded, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aWS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWU" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWV" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aWW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"aWY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"aWZ" = ( -/obj/machinery/door/airlock/glass_security, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aXb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"aXc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/button/windowtint{ - id = "surfsurgery2"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"aXd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXf" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/library) -"aXg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXh" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aXi" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aXj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aXk" = ( -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -4 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = -10 - }, -/turf/simulated/wall, -/area/library) -"aXl" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/library) -"aXm" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"aXn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXo" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/library) -"aXp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXv" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aXw" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/library) -"aXx" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - closed_layer = 10; - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - layer = 1; - name = "Bridge Blast Doors"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aXy" = ( -/obj/structure/table/standard, -/obj/item/weapon/gun/energy/taser/xeno, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/obj/item/weapon/melee/baton/slime/loaded, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"aXz" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"aXA" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aXB" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - closed_layer = 10; - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - layer = 1; - name = "Bridge Blast Doors"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aXC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/library) -"aXD" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - closed_layer = 10; - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - layer = 1; - name = "Bridge Blast Doors"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aXE" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - closed_layer = 10; - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - layer = 1; - name = "Bridge Blast Doors"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/bridge) -"aXF" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aXG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aXH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/weapon/implantcase/chem, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aXJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/weapon/locator, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aXK" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aXM" = ( -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aXP" = ( -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"aXS" = ( -/obj/structure/bed/chair/comfy, -/obj/machinery/camera/network/civilian, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"aXT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aXU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aXV" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aXW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aXX" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aXY" = ( -/obj/item/device/aicard, -/obj/item/weapon/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/ids, -/obj/structure/table/reinforced, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aXZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"aYa" = ( -/obj/structure/closet, -/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"aYb" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cap_office"; - layer = 3.1; - name = "Colony Directo's Shutters" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aYd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/junk, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"aYe" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"aYf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYg" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aYi" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/donut, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access = list(19) - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYl" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/down, -/obj/structure/cable/green{ - d1 = 32; - d2 = 8; - icon_state = "32-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/vacant/vacant_shop) -"aYm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYn" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aYo" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYq" = ( -/obj/structure/dogbed, -/mob/living/simple_mob/animal/passive/dog/corgi/Ian, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"aYr" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access = list(19) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYs" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Bridge" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYv" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_x = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "bridge blast"; - name = "Bridge Blastdoors"; - pixel_x = -6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYw" = ( -/obj/machinery/photocopier, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYx" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYy" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYz" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYA" = ( -/obj/machinery/computer/supplycomp{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYB" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYC" = ( -/turf/simulated/wall, -/area/tether/surfacebase/entertainment) -"aYD" = ( -/obj/machinery/computer/power_monitor{ - dir = 8; - throwpass = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYE" = ( -/obj/effect/floor_decal/corner/paleblue/full, -/obj/structure/flora/pottedplant{ - icon_state = "plant-10" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYF" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYG" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYH" = ( -/obj/effect/floor_decal/corner/blue/full, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYI" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYJ" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYK" = ( -/obj/effect/floor_decal/corner/yellow/full, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYL" = ( -/obj/machinery/computer/rcon{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYM" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-10" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aYN" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/botanystorage) -"aYO" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/commandmaint) -"aYP" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aYQ" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aYR" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aYS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aYT" = ( -/turf/simulated/open, -/area/bridge_hallway) -"aYU" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/bridge_hallway) -"aYV" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/commandmaint) -"aYW" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/effect/landmark/start{ - name = "Head of Personnel" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"aYX" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aYY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aYZ" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aZa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aZb" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/clipboard, -/obj/item/weapon/stamp/hop, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -10 - }, -/obj/item/weapon/paper/dockingcodes, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"aZc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aZd" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/beige/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aZe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aZf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aZh" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access = list(19) - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aZi" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 32; - d2 = 4; - icon_state = "32-4" - }, -/turf/simulated/open, -/area/maintenance/commandmaint) -"aZj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 8; - pixel_y = -26 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aZk" = ( -/obj/structure/closet/wardrobe/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aZl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aZm" = ( -/obj/item/clothing/glasses/omnihud/all, -/obj/structure/closet/secure_closet/captains, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aZn" = ( -/obj/structure/table/reinforced, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = 32 - }, -/obj/machinery/recharger, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aZo" = ( -/obj/structure/table/reinforced, -/obj/item/device/megaphone, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = 32 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"aZp" = ( -/obj/structure/closet/secure_closet/hop, -/obj/item/clothing/glasses/omnihud, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aZq" = ( -/obj/structure/closet/secure_closet/hop2, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aZr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aZs" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/commandmaint) -"aZt" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aZu" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/flame/candle, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aZv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = list(57) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/hop) -"aZw" = ( -/obj/item/weapon/bedsheet/captain, -/obj/structure/bed/padded, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aZx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aZy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"aZz" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"aZA" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aZB" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"aZC" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aZD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aZE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aZF" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/obj/structure/window/basic, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aZG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cap_office"; - layer = 3.1; - name = "Colony Directo's Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aZH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cap_office"; - layer = 3.1; - name = "Colony Directo's Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aZJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aZK" = ( -/obj/machinery/sleep_console, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"aZL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aZM" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"aZN" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Personnel's Office" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"aZO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aZP" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/red, -/obj/item/weapon/pen/multi, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"aZQ" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"aZR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aZS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aZT" = ( -/obj/machinery/door/airlock/command{ - id_tag = "captaindoor"; - name = "Site Manager's Office"; - req_access = list(20) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aZU" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/skills{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/weapon/paper/dockingcodes, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aZV" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/melee/chainofcommand, -/obj/item/weapon/coin/phoron{ - desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; - name = "limited edition phoron coin" - }, -/obj/item/weapon/folder/blue_captain, -/obj/item/weapon/stamp/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aZW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/beige/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/beige/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aZX" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aZY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aZZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"baa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bab" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bac" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bad" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bae" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"baf" = ( -/obj/structure/table/rack, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/mask/gas, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/weapon/card/id/gold/captain/spare, -/obj/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Colony Director's Storage"; - req_access = list(20) - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/item/clothing/head/helmet/space/void/captain, -/obj/item/clothing/suit/space/void/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bag" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bah" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bai" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"baj" = ( -/obj/structure/displaycase, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bak" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bal" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bam" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"ban" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bao" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/button/windowtint{ - id = "hop_office"; - layer = 3.3; - pixel_x = 3; - pixel_y = -29 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "hop_office_desk"; - layer = 3.3; - name = "Desk Privacy Shutter"; - pixel_x = 10; - pixel_y = -29 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bap" = ( -/obj/structure/table/reinforced, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"baq" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bar" = ( -/obj/machinery/computer/communications, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bas" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/blue, -/obj/item/device/flashlight/lamp/green, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bat" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bau" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Captain's Office" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bav" = ( -/obj/machinery/photocopier, -/obj/machinery/firealarm{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"baw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bax" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bay" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"baz" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"baA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"baB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"baC" = ( -/obj/machinery/vending/cola{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"baD" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"baE" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"baF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/airlock/freezer{ - name = "Service"; - req_access = list(28) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"baG" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"baH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"baI" = ( -/obj/machinery/icecream_vat, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"baJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"baK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"baL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"baM" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"baN" = ( -/obj/machinery/papershredder, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"baO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/beige/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"baP" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"baQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"baS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"baT" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/media/jukebox, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"baU" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"baV" = ( -/obj/machinery/computer/card, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"baW" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/computer/guestpass{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"baX" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"baY" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"baZ" = ( -/obj/random/cutout, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bba" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bbb" = ( -/obj/structure/bookcase, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/command_guide, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bbc" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bbd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bbe" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/machinery/vending/loadout/accessory, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bbf" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bbg" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "draama"; - name = "Mystery Window" - }, -/obj/structure/window/reinforced/polarized{ - id = "draama"; - name = "Mystery Window" - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Druma"; - layer = 3.3; - name = "Entertainment Shutters" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "DRAMATIC"; - name = "Dramatic Blast Door" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/entertainment) -"bbh" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bbi" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bbj" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bbk" = ( -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bbl" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bbm" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bbn" = ( -/obj/structure/sign/directions/evac{ - dir = 1 - }, -/turf/simulated/wall, -/area/tether/surfacebase/entertainment) -"bbo" = ( -/obj/machinery/door/window/westright{ - req_one_access = list(35,28) - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"bbp" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bbq" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/bed/chair/wood, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bbr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bbs" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bbt" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bbu" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bbv" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bbw" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bbx" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/blue_hop, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -8; - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bby" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/blue/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bbz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bbA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bbB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bbC" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bbD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bbE" = ( -/obj/structure/dogbed, -/obj/structure/curtain/open/bed, -/mob/living/simple_mob/animal/passive/fox/renault, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bbF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bbG" = ( -/obj/structure/sign/department/sci{ - pixel_x = -32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bbH" = ( -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - pixel_y = -22 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bbI" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/flame/candle, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"bbJ" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bbK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bbL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bbM" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bbN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bbO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bbP" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/flame/candle, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bbQ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/metaglass, -/obj/item/weapon/reagent_containers/food/drinks/metaglass, -/obj/item/weapon/reagent_containers/food/drinks/metaglass, -/obj/item/weapon/reagent_containers/food/drinks/metaglass, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"bbR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bbS" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bbT" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bbU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bbV" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bbW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"bbY" = ( -/obj/effect/floor_decal/spline/plain, -/obj/item/weapon/stool/padded, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bbZ" = ( -/obj/effect/floor_decal/spline/plain, -/obj/item/weapon/stool/padded, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bca" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bcb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bcc" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bcd" = ( -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"bce" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bcf" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/item/weapon/paper{ - desc = ""; - info = "Yes hello, the goat in the freezer is named 'Spike'. Please do not fuck with Spike. He doesn't have the best temper."; - name = "Important notice from Rancher Jim" - }, -/obj/item/weapon/book/manual/chef_recipes, -/obj/structure/noticeboard{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bcg" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Botany"; - req_one_access = list(35,28) - }, -/obj/machinery/door/window/westright{ - dir = 2; - name = "Kitchen"; - req_access = list(28) - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bch" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bci" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bcj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/vending/entertainer, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bck" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bcl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bcm" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bcn" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bco" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "DRAMATIC"; - name = "Dramatic Blast Door" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "draama"; - name = "Mystery Window" - }, -/obj/structure/window/reinforced/polarized{ - id = "draama"; - name = "Mystery Window" - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Druma"; - layer = 3.3; - name = "Entertainment Shutters" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/entertainment) -"bcp" = ( -/obj/machinery/requests_console{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "bar"; - name = "Bar Shutter Control"; - pixel_x = 24; - pixel_y = 24 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bcq" = ( -/obj/structure/table/woodentable, -/obj/machinery/camera/network/outside{ - dir = 9 - }, -/obj/fiftyspawner/cardboard, -/obj/fiftyspawner/plastic, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bcr" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/entertainment/stage) -"bcs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bct" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/beige/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bcu" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 2; - name = "Bar"; - req_access = list(25) - }, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Kitchen"; - req_access = list(28) - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bcv" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bcw" = ( -/obj/machinery/light, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bcx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/beige/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bcy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bcz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bcA" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bcB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bcC" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bcD" = ( -/obj/structure/closet/crate, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bcE" = ( -/obj/structure/closet/crate, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bcF" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"bcG" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bcH" = ( -/obj/machinery/floodlight, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bcI" = ( -/turf/simulated/wall, -/area/tether/surfacebase/entertainment/stage) -"bcJ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/entertainment/stage) -"bcK" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/entertainment/stage) -"bcL" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/sinpockets, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bcM" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bcN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/mob/living/simple_mob/vore/rabbit/white/lennie, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bcO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bcP" = ( -/obj/structure/table/rack/steel, -/obj/item/pizzavoucher, -/obj/item/weapon/moneybag, -/obj/item/weapon/inflatable_duck, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/item/weapon/gun/projectile/revolver/capgun, -/obj/item/weapon/gun/projectile/revolver/capgun, -/obj/item/toy/cultsword, -/obj/item/toy/cultsword, -/obj/item/weapon/bikehorn/rubberducky, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bcQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bcR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bcS" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bcT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bcU" = ( -/obj/structure/table/rack/steel, -/obj/item/mecha_parts/part/durand_left_leg, -/obj/item/weapon/cane/crutch, -/obj/item/weapon/pack/cardemon, -/obj/item/weapon/soap/syndie, -/obj/item/weapon/soap/nanotrasen, -/obj/item/weapon/soap/deluxe, -/obj/item/weapon/staff/gentcane, -/obj/item/toy/crossbow, -/obj/item/toy/eight_ball/conch, -/obj/item/weapon/cell/potato, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/megaphone, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bcV" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/table/rack/steel, -/obj/item/device/instrument/violin, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bcW" = ( -/obj/effect/decal/cleanable/tomato_smudge, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bcX" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bcY" = ( -/obj/effect/landmark/start{ - name = "Entertainer" - }, -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bcZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/decal/cleanable/tomato_smudge, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bda" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/food/snacks/mint, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bdb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/light_switch{ - name = "House Lights"; - pixel_x = -25 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment) -"bdc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bdd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - frequency = 1532; - name = "Stagehand Speaker"; - pixel_x = 24; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bde" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"bdf" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"bdg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bdh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bdi" = ( -/obj/machinery/alarm{ - pixel_y = 25 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bdj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bdk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bdl" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bdm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - frequency = 1532; - name = "Stagehand Mic"; - pixel_x = -24 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bdn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/mob/living/carbon/human/monkey/punpun, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"bdo" = ( -/obj/effect/decal/cleanable/tomato_smudge, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bdp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - name = "Stage Lights"; - pixel_x = -25 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bdq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bdr" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bds" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bdt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"bdu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"bdv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bdw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bdx" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bdy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bdA" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/tether/surfacebase/barbackmaintenance) -"bdB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"bdC" = ( -/obj/structure/table/bench/standard, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Botanist" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bdD" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/item/device/radio/intercom/entertainment{ - pixel_y = -23 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bdF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bdG" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bdH" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bdI" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"bdJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bdK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"bdL" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"bdM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bdO" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/packageWrap, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"bdP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bdQ" = ( -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bdR" = ( -/obj/structure/kitchenspike, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bdS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/freezer{ - name = "Kitchen Cold Room"; - req_access = list(28) - }, -/obj/structure/fans/tiny, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/freezer) -"bdT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bdV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bdZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bea" = ( -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"beb" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/simulated/floor/tiled/eris/steel/bar_light, -/area/tether/surfacebase/barbackmaintenance) -"bec" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secreet"; - name = "Tintable Window" - }, -/obj/structure/window/reinforced/polarized{ - id = "secreet"; - name = "Tintable Window" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/barbackmaintenance) -"bed" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Entertainment Backroom"; - req_access = list(72,20,57) - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/entertainment/backstage) -"bee" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/arcade/orion_trail, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bef" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"beg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"beh" = ( -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bei" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"bej" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bek" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/requests_console{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - pixel_y = -25 - }, -/obj/machinery/vending/dinnerware{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bel" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"bem" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"ben" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"beo" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bep" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/weapon/storage/pill_bottle/dice, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"beq" = ( -/obj/machinery/door/airlock/freezer{ - name = "Kitchen Cold Room"; - req_access = list(28) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/fans/tiny, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/crew_quarters/freezer) -"ber" = ( -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bes" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bet" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"beu" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bev" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bew" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bex" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 23 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bey" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bez" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"beA" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"beB" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"beC" = ( -/obj/structure/table/bench/standard, -/obj/effect/landmark/start{ - name = "Botanist" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"beD" = ( -/obj/machinery/camera/network/civilian, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"beE" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hydroponics) -"beF" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"beG" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"beH" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"beI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"beJ" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"beK" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hydroponics) -"beL" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"beM" = ( -/obj/machinery/door/window/westright{ - req_one_access = list(35,28) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hydroponics) -"beN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"beO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"beP" = ( -/obj/machinery/gibber, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"beQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"beR" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"beS" = ( -/obj/effect/landmark/start{ - name = "Entertainer" - }, -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"beT" = ( -/obj/structure/frame/computer, -/obj/item/weapon/material/twohanded/baseballbat{ - name = "Swatta" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"beU" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"beV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"beW" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"beX" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"beY" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"beZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bfa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bfb" = ( -/obj/machinery/door/airlock/freezer{ - name = "Service"; - req_one_access = list(35,28) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hydroponics/cafegarden) -"bfc" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/flame/candle, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bfd" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bfe" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bff" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bfg" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -4 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -10 - }, -/turf/simulated/wall, -/area/tether/surfacebase/entertainment) -"bfh" = ( -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"bfi" = ( -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"bfj" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/orange{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bfk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bfl" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bfm" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bfn" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bfo" = ( -/obj/structure/table/gamblingtable, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bfp" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bfq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bfr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bfs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/mob/living/simple_mob/animal/goat{ - name = "Spike" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bft" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bfu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"bfv" = ( -/obj/structure/closet/crate, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bfw" = ( -/obj/structure/closet/crate/freezer, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bfx" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bfy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bfz" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bfA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"bfB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"bfC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"bfD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bfE" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bfF" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bfG" = ( -/obj/structure/table/gamblingtable, -/obj/item/weapon/storage/pill_bottle/dice_nerd, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bfH" = ( -/obj/machinery/light/small, -/obj/structure/table/woodentable, -/obj/item/weapon/bone/skull{ - name = "Yo'rick" - }, -/obj/item/weapon/paper{ - desc = ""; - info = "The Silence Into Laughter program works to place hard working, studied, accomplished, hardworking, homebrewed, diplomaholding, or otherwise clowns and mimes into the workforce! The Head Clowncellor and the Director at Mime have finally worked together to bring this titan of a workers' union! If you have a background in silence or laughter, please apply at our exonet site at: https://forum.vore-station.net/viewforum.php?f=45"; - name = "Clowns and Mimes Wanted!" - }, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bfI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/random/cutout, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bfJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bfK" = ( -/obj/structure/table/gamblingtable, -/obj/item/weapon/deck/cards, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bfL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/servicebackroom) -"bfM" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"bfN" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"bfO" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/door/airlock/freezer{ - name = "Kitchen"; - req_access = list(28) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bfP" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"bfQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bfR" = ( -/obj/machinery/computer/arcade/battle, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bfS" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bfT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"bfU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bfV" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bfW" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"bfX" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bfY" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/item/weapon/material/ashtray/glass, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bfZ" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bga" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"bgb" = ( -/obj/machinery/button/remote/blast_door{ - id = "freezer"; - name = "Freezer Shutter Control"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bgc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/eris/cafe, -/area/hydroponics) -"bgd" = ( -/obj/effect/landmark{ - name = "Observer-Start" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bge" = ( -/obj/machinery/requests_console{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bgf" = ( -/obj/structure/noticeboard{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bgg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/backstage) -"bgh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bgi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bgj" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/structure/sign/securearea{ - desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; - icon_state = "monkey_painting"; - name = "Mr. Deempisi portrait"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bgk" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/entertainment/stage) -"bgl" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bgm" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bgn" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/weapon/storage/box/beakers{ - name = "box of measuring cups"; - pixel_x = 2; - pixel_y = 3; - starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7) - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bgo" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/entertainment/stage) -"bgp" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/item/weapon/book/manual/cook_guide, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bgq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/appliance/cooker/oven, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bgr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/appliance/cooker/grill, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bgs" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/item/weapon/packageWrap, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bgt" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/closet/chefcloset, -/obj/item/glass_jar, -/obj/item/device/retail_scanner/civilian, -/obj/item/weapon/soap/nanotrasen, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - pixel_y = 25 - }, -/obj/item/weapon/tool/wrench, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bgu" = ( -/obj/structure/bed/chair, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"bgv" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Entertainer" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bgw" = ( -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bgx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bgy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"bgz" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/obj/item/weapon/book/manual/bar_guide, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bgA" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25; - target_temperature = 270 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bgB" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/entertainment) -"bgC" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bgD" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bgE" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/item/weapon/stool/padded, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bgF" = ( -/obj/structure/flora/pottedplant, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bgG" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/tether/surfacebase/barbackmaintenance) -"bgH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secreet"; - name = "Tintable Window" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "secreet"; - name = "Tintable Window" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/barbackmaintenance) -"bgI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/servicebackroom) -"bgJ" = ( -/obj/machinery/door/airlock{ - id_tag = "barbackdoor"; - name = "Service"; - req_access = list(25) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/bar_backroom) -"bgK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/silver{ - name = "Auditorium" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/entertainment) -"bgL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/silver{ - name = "Entertainment Backroom"; - req_one_access = list(72,20,57) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/lino, -/area/tether/surfacebase/entertainment/stage) -"bgM" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"bgN" = ( -/obj/machinery/door/airlock/silver{ - name = "Auditorium" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/entertainment) -"bgO" = ( -/obj/structure/table/woodentable, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"bgP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Bar Substation" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"bgQ" = ( -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access = list(25) - }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/effect/floor_decal/spline/plain, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/lino, -/area/tether/surfacebase/bar_backroom) -"bgR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/techmaint, -/area/crew_quarters/barrestroom) -"bgS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/barbackmaintenance) -"bgT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secreet"; - name = "Tintable Window" - }, -/obj/structure/window/reinforced/polarized{ - id = "secreet"; - name = "Tintable Window" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "secreet"; - name = "Tintable Window" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/barbackmaintenance) -"bgX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/camera/network/research/xenobio, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"bha" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/camera/network/research/xenobio{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"bhe" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/camera/network/research/xenobio{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"bhf" = ( -/obj/structure/table/standard, -/obj/item/device/slime_scanner, -/obj/item/device/slime_scanner, -/obj/item/device/multitool, -/obj/machinery/camera/network/research/xenobio{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"bhg" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"bhh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass{ - name = "Long-Range Teleporter Access" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/southhall) -"bhi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhk" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/device/radio/off, -/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ - pixel_x = -9; - pixel_y = -2 - }, -/obj/item/device/taperecorder{ - pixel_x = 10 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"bhl" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/southhall) -"bhm" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/southhall) -"bhn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"bhp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhq" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhr" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/southhall) -"bhs" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/southhall) -"bht" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhu" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bhv" = ( -/obj/machinery/alarm{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhw" = ( -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhy" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/southhall) -"bhz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhB" = ( -/obj/structure/dogbed, -/mob/living/simple_mob/animal/sif/shantak/scruffy, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"bhC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhE" = ( -/turf/simulated/wall, -/area/tether/surfacebase/topairlock) -"bhF" = ( -/obj/structure/table/rack{ - dir = 4 - }, -/obj/random/maintenance/clean, -/obj/item/clothing/mask/gas, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"bhG" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"bhH" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhI" = ( -/turf/simulated/open, -/area/tether/surfacebase/southhall) -"bhJ" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"bhK" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/southhall) -"bhN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"bhO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"bhP" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"bhQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"bhR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"bhT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/tether/surfacebase/topairlock) -"bhU" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "southciv_airlock_scrubber" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/topairlock) -"bhV" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/orange{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "southciv_airlock_scrubber" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/topairlock) -"bhW" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bhX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/topairlock) -"bhY" = ( -/obj/structure/railing, -/obj/structure/grille, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "southciv_airlock_pump" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bhZ" = ( -/obj/structure/railing, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/grille, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "southciv_airlock_pump" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bia" = ( -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/civilian, -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"bib" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/vending/wallmed_airlock{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"bic" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"bid" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"bie" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "southciv_airlock_outer"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/topairlock) -"bif" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"big" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bih" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "southciv_airlock_inner"; - locked = 1 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "southciv_airlock"; - pixel_x = 8; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/topairlock) -"bii" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bij" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bik" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/topairlock) -"bil" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bim" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/orange{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bin" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bio" = ( -/obj/machinery/access_button/airlock_exterior{ - master_tag = "southciv_airlock"; - pixel_x = -8; - pixel_y = -25 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "southciv_airlock_outer"; - locked = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/topairlock) -"bip" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"biq" = ( -/obj/machinery/embedded_controller/radio/airlock/phoron{ - dir = 8; - id_tag = "southciv_airlock"; - pixel_x = 25; - pixel_y = -30 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/airlock_sensor/phoron{ - id_tag = "southciv_airlock_sensor"; - pixel_x = 25; - pixel_y = -40 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bir" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "southciv_airlock_inner"; - locked = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/topairlock) -"bis" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bit" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"biu" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Surface EVA" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/topairlock) -"biv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"biw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"bix" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Surface EVA" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/topairlock) -"biy" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/topairlock) -"biz" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "southciv_airlock_scrubber" - }, -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/topairlock) -"biA" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "southciv_airlock_scrubber" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/topairlock) -"biB" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"biC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"biD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"biE" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -24 - }, -/obj/structure/cable/orange, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"biF" = ( -/turf/simulated/wall, -/area/tether/surfacebase/cafeteria) -"biG" = ( -/obj/machinery/door/airlock/glass{ - name = "Cafeteria" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biH" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/tether/surfacebase/cafeteria) -"biI" = ( -/obj/machinery/door/airlock/glass{ - name = "Cafeteria" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biJ" = ( -/obj/machinery/door/airlock{ - name = "Decontamination" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"biK" = ( -/obj/machinery/door/airlock{ - name = "Decontamination" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"biL" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biN" = ( -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biO" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's set to Free-Anur-Entertanment, I wonder what else is on?"; - icon_state = "frame"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biP" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/orange{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biQ" = ( -/obj/machinery/alarm{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biR" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"biS" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"biT" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"biU" = ( -/obj/machinery/vending/snack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"biZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bja" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bje" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"bjf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"bjg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"bjh" = ( -/obj/machinery/vending/fitness{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bji" = ( -/obj/structure/table/bench/sifwooden/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjj" = ( -/obj/structure/table/bench/sifwooden/padded, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjk" = ( -/obj/structure/table/bench/sifwooden/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjl" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/topairlock) -"bjm" = ( -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"bjn" = ( -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/topairlock) -"bjo" = ( -/obj/machinery/vending/coffee{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjp" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjq" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjr" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjs" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjt" = ( -/obj/structure/table/bench/sifwooden/padded, -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; - icon_state = "frame"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bju" = ( -/obj/item/device/radio/intercom/entertainment{ - pixel_y = -23 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjv" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bjw" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/cafeteria) -"bjx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"bjy" = ( -/obj/item/device/healthanalyzer, -/obj/item/bodybag/cryobag, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"bjB" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/item/device/sleevemate, -/obj/item/weapon/storage/box/nifsofts_medical{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/weapon/storage/box/nifsofts_medical{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/device/flashlight{ - pixel_x = 6; - pixel_y = 31 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"bjH" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -4 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bjI" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/medical/triage) -"bjJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"bjO" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_y = 32 - }, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/door/window/brigdoor/southright{ - req_access = list(); - req_one_access = list(5,24) - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bjT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"bjU" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper{ - desc = ""; - info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing."; - name = "Body Designer Note" - }, -/obj/item/device/sleevemate, -/obj/item/weapon/storage/box/body_record_disk, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"bjY" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"bjZ" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/medical_stand, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery2) -"bkc" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"bkd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"bke" = ( -/obj/machinery/computer/transhuman/designer{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"bkk" = ( -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/machinery/chem_master, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bko" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"bkp" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 22 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"bkq" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"bkr" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/paper{ - desc = ""; - info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management"; - name = "note to science staff" - }, -/obj/item/device/robotanalyzer, -/obj/item/device/robotanalyzer, -/obj/machinery/button/windowtint{ - id = "robo_surg_1"; - pixel_y = 25 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"bks" = ( -/obj/structure/window/reinforced/polarized/full{ - id = "robo_surg_1" - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"bkt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"bku" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"bkv" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"bkw" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "robo_resleeving" - }, -/turf/simulated/floor/plating, -/area/rnd/robotics/resleeving) -"bkx" = ( -/obj/machinery/alarm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bky" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/button/windowtint{ - id = "robo_resleeving"; - pixel_x = 10; - pixel_y = 22 - }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bkz" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bkA" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bkB" = ( -/obj/machinery/transhuman/synthprinter, -/turf/simulated/floor/tiled/dark, -/area/rnd/robotics/resleeving) -"bkC" = ( -/turf/simulated/wall, -/area/rnd/robotics/resleeving) -"bkE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"bkF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"bkG" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Surgery Room"; - req_one_access = list(29,47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"bkH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"bkI" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Resleeving Room"; - req_one_access = list(29,47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bkJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bkK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bkL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bkM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bkN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "tourbus_windows"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/tourbus/general) -"bkO" = ( -/obj/machinery/transhuman/resleever, -/turf/simulated/floor/tiled/dark, -/area/rnd/robotics/resleeving) -"bkP" = ( -/obj/structure/closet/secure_closet/medical_wall/anesthetics{ - pixel_x = -32; - req_access = list(); - req_one_access = list(29,45) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"bkQ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"bkR" = ( -/obj/structure/table/standard, -/obj/item/device/defib_kit/jumper_kit, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = -1; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"bkS" = ( -/obj/structure/table/standard, -/obj/item/weapon/book/manual/robotics_cyborgs, -/obj/item/clothing/glasses/omnihud/rnd, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"bkT" = ( -/obj/structure/table/standard, -/obj/item/device/mmi, -/obj/item/device/mmi/digital/posibrain, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"bkU" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"bkV" = ( -/obj/structure/table/standard, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"bkW" = ( -/obj/structure/table/standard, -/obj/item/weapon/pen, -/obj/item/weapon/pen, -/obj/item/weapon/pen, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"bkX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bkY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/vending/loadout/uniform, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bkZ" = ( -/obj/structure/table/standard, -/obj/item/weapon/book/manual/resleeving, -/obj/item/weapon/storage/box/backup_kit, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"bla" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"blb" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"blc" = ( -/obj/structure/window/reinforced/polarized/full{ - id = "robo_surg_1" - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "robo_surg_1" - }, -/turf/simulated/floor/plating, -/area/rnd/robotics/surgeryroom1) -"bld" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/robotics) -"ble" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "robo_resleeving" - }, -/obj/structure/window/reinforced/polarized{ - id = "robo_resleeving" - }, -/turf/simulated/floor/plating, -/area/rnd/robotics/resleeving) -"blf" = ( -/obj/structure/window/reinforced/polarized/full{ - id = "robo_resleeving" - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "robo_resleeving" - }, -/turf/simulated/floor/plating, -/area/rnd/robotics/resleeving) -"blm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bln" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blq" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/surgery1) -"blr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"blt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blu" = ( -/obj/structure/table/rack, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"blw" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blA" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blB" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blC" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/machinery/recharger, -/obj/random/medical, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blG" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/closet/secure_closet/medical2, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"blH" = ( -/obj/structure/table/standard, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/obj/item/device/defib_kit/loaded, -/obj/item/stack/nanopaste, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"blK" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blM" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"blN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"blP" = ( -/obj/structure/table/standard, -/obj/item/device/glasses_kit, -/obj/item/weapon/storage/box/rxglasses, -/obj/item/weapon/storage/box/rxglasses, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"blR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blS" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blT" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"blU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"blV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"blZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"bmc" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmg" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"bmk" = ( -/obj/structure/closet/crate{ - icon_state = "crate"; - name = "Grenade Crate" - }, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/weapon/tool/screwdriver, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/item/weapon/gun/launcher/syringe, -/obj/item/weapon/storage/box/syringegun, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"bml" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/machinery/recharger, -/obj/item/weapon/storage/box/syringegun, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"bmm" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmo" = ( -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"bmp" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"bmq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmr" = ( -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bms" = ( -/obj/machinery/bodyscanner{ - dir = 4 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmt" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/upperhall) -"bmu" = ( -/obj/structure/table/glass, -/obj/random/medical, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/item/weapon/tool/screwdriver, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmx" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"bmy" = ( -/obj/structure/medical_stand, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"bmz" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmC" = ( -/obj/machinery/optable, -/obj/machinery/oxygen_pump/anesthetic{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"bmE" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - id_tag = null; - name = "Medbay Storage"; - req_access = list(5); - req_one_access = list(5) - }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"bmG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmI" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmM" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmN" = ( -/obj/machinery/door/airlock/maintenance/medical{ - name = "Medical Maintenance Access"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/medical/triage) -"bmP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bmY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bnc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"bng" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"bnj" = ( -/obj/effect/floor_decal/borderfloorwhite/corner, -/obj/effect/floor_decal/corner/paleblue/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bnk" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bnn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bno" = ( -/obj/item/device/sleevemate, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"bnq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/wallmed1{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"bnu" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"bnz" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/smartfridge/chemistry, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/chemistry) -"bnF" = ( -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay foyer."; - dir = 1; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - pixel_x = -25; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bnG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"bnI" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Chemistry"; - req_one_access = list(33) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/headset/headset_med, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/fancy/vials, -/obj/item/weapon/storage/fancy/vials, -/obj/item/weapon/storage/box/pillbottles, -/obj/item/weapon/storage/box/pillbottles, -/obj/structure/closet/wardrobe/chemistry_white, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/closet/secure_closet/medical1, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnN" = ( -/obj/machinery/chem_master, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnQ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chemist" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnS" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnU" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Chemistry"; - req_one_access = list(33) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"bnX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/window/southright{ - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"bnY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 9 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 2 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = -5 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = -12 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"bod" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"boe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bof" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bog" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"boh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bol" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bom" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bon" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"boo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bop" = ( -/obj/structure/sign/department/medbay{ - pixel_x = -32 - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/multi_tile/glass/polarized{ - id_tag = "MedbayFoyer"; - id_tint = "medbayfoyer"; - name = "Medbay Airlock"; - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"bou" = ( -/obj/structure/railing, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"bov" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"bow" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"box" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"boy" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "iaar" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"boA" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "iaar" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"boB" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "iaar" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"boC" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "iaar" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"bpw" = ( -/obj/structure/table/steel, -/obj/item/weapon/folder/red, -/obj/item/weapon/storage/box/donut, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"bqs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bqw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/requests_console/preset/hos{ - dir = 4; - pixel_x = -54 - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"bsa" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "kitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bsb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bsr" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"bxa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"bzK" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"bEd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"bJV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell B" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/upperhall) -"bKS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"bMK" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"bSe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"bTC" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"bUM" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"bUT" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/stamp/internalaffairs, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"caw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1380; - id_tag = "tourbus_right" - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/effect/map_helper/airlock/door/simple, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "tourbus_windows"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/tourbus/general) -"cbn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"cbM" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/closet/walllocker_double{ - dir = 8; - pixel_x = -28 - }, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/taperecorder, -/obj/item/device/tape/random, -/obj/item/device/tape/random, -/obj/item/weapon/storage/secure/briefcase, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"cdv" = ( -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"ceN" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"cmQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/holoposter{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"cnN" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"cnO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"cnZ" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"cpd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"crh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"csd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"cwI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"cAG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/library) -"cEx" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/stamp/internalaffairs, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"cFA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"cGs" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"cGt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"cHf" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"cJL" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"cMO" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "iaal" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"cRi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"cSl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/library) -"cSL" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"cVg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/button/windowtint/multitint{ - id = "sec_processing"; - pixel_x = 26; - pixel_y = 6; - req_access = list(1) - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"cWe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"cWU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"cYm" = ( -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"daN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"dbk" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "mechbay"; - name = "Mech Bay" - }, -/obj/machinery/button/remote/blast_door{ - id = "mechbay-inner"; - name = "Mech Bay"; - pixel_x = 27; - pixel_y = -5; - req_access = list(29,47); - req_one_access = list(47) - }, -/obj/machinery/button/remote/blast_door{ - id = "mechbay"; - name = "Mech Bay"; - pixel_x = 27; - pixel_y = 6; - req_access = list(29,47); - req_one_access = list(47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/mechbay) -"ddl" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/orange{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"ddn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "tourbus_windows"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/tourbus/cockpit) -"dgA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"dlX" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"dmH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"drR" = ( -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"dsF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"dyV" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"dDQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Chemistry"; - sortType = "Chemistry" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"dFg" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "hos_office" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/hos) -"dGZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"dJm" = ( -/obj/machinery/door/airlock/glass{ - req_one_access = list(19,43,67) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/tourbus/cockpit) -"dKj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"dMk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"dSQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"dVE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"dVW" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"dVZ" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/accessory/permit/gun{ - desc = "An example of a card indicating that the owner is allowed to carry a firearm. There's a note saying to fax CentCom if you want to order more blank permits."; - name = "sample weapon permit"; - owner = 1 - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/multi, -/obj/item/device/megaphone, -/obj/item/clothing/accessory/permit/gun, -/obj/item/clothing/accessory/permit/gun, -/obj/item/clothing/accessory/permit/gun, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"dXv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"eeD" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"efc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"efR" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"ehr" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"eiO" = ( -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"ely" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"erS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lime/bordercorner2, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"exM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"eCG" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) -"eCP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"eEW" = ( -/obj/machinery/door/airlock{ - name = "Internal Affairs"; - req_access = list(38) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"eFg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"eGv" = ( -/obj/structure/fuel_port{ - pixel_x = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/steel/danger, -/area/shuttle/tourbus/general) -"eHk" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 29 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 27 - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"eHY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/shuttle_pad) -"eIs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"eJm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"eQN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"faL" = ( -/obj/structure/lattice, -/obj/structure/cable/orange{ - d1 = 32; - icon_state = "32-1" - }, -/turf/simulated/open, -/area/tether/surfacebase/southhall) -"fcg" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"feu" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/mauve/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"fgW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"fkn" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"fru" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 8; - frequency = 1380; - id_tag = "tourbus_docker"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"fxh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass{ - name = "Recreation Area" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/recreation_area) -"fyZ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"fzy" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/iaa/officecommon) -"fGm" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Briefing Room"; - req_access = newlist(); - req_one_access = list(1,38) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"fKo" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"fLx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/wall, -/area/tether/surfacebase/medical/storage) -"fNA" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"fOj" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "HoP Office"; - sortType = "HoP Office" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"fYr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/engines) -"gae" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"geQ" = ( -/obj/machinery/holoposter{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"gfg" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"ghf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"ghk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"ghW" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"giR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"gnE" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"gtn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"gtp" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"gvp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 22; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"gym" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"gzd" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"gAF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"gHh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/turf/simulated/wall/shull, -/area/shuttle/tourbus/general) -"gLd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"gLg" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/holoposter{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"gRG" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"gSr" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/orange, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"gTL" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"gTN" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"gUL" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/obj/effect/floor_decal/rust/part_rusted1{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"gVg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"gYa" = ( -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"gZn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"gZR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"haS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Public Garden" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"heL" = ( -/obj/machinery/computer/operating, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery1) -"hfN" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"hgf" = ( -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_hallway) -"hlF" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) -"hmT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"hoQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"hqs" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"hth" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"hxc" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lime/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"hxR" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"hxY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"hCr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"hCz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/hatch{ - req_one_access = list() - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"hCB" = ( -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"hEt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"hEN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/library) -"hGm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"hId" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"hIu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"hJt" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/holoposter{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"hLd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"hQl" = ( -/obj/machinery/newscaster{ - pixel_y = -29 - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"hVc" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Security" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"ieb" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "tourbus_pad"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"ieo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"ieE" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"ifI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"iiv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"ikh" = ( -/obj/machinery/vending/sovietsoda{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"ioG" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"iqb" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/closet/emergsuit_wall{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"isl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"itr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/upperhall) -"ivq" = ( -/obj/machinery/computer/ship/engines{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) -"ixw" = ( -/obj/structure/table/standard, -/obj/item/weapon/book/codex, -/obj/random/cigarettes, -/obj/item/weapon/deck/cards, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/holoposter{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"iFr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"iHX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"iLq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/wall, -/area/tether/surfacebase/medical/storage) -"iLF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/briefingroom) -"iLR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"iOL" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/uppernorthstairwell{ - name = "\improper North Medical Stairwell" - }) -"iQr" = ( -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"iRX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"iUu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/wall, -/area/tether/surfacebase/medical/storage) -"iXM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"jmQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"jpB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/wall/shull, -/area/shuttle/tourbus/general) -"jrn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"juj" = ( -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"jvK" = ( -/turf/simulated/wall/shull, -/area/shuttle/tourbus/cockpit) -"jAt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"jBt" = ( -/turf/simulated/wall, -/area/teleporter/departing) -"jBB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"jCn" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"jCE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/southhall) -"jFq" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder{ - pixel_x = -4 - }, -/obj/item/weapon/folder/blue{ - pixel_x = 5 - }, -/obj/item/weapon/folder/red{ - pixel_y = 3 - }, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/clipboard, -/obj/item/weapon/storage/briefcase{ - pixel_x = -2; - pixel_y = -5 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 27 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"jFz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"jGK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"jHw" = ( -/turf/simulated/wall/shull, -/area/shuttle/tourbus/general) -"jJd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"jKY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"jML" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_external{ - icon_state = "door_locked"; - id_tag = "tourbus_left"; - locked = 1; - req_one_access = list() - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "tourbus_left"; - name = "hatch bolt control"; - pixel_y = 30; - req_one_access = list(19,43,67); - specialfunctions = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "tourbus_windows"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/tourbus/general) -"jPW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"jRO" = ( -/obj/effect/floor_decal/spline/plain, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/bar) -"jSV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"jYd" = ( -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/tether/surfacebase/shuttle_pad) -"jYD" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/iaa/officeb) -"jZe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"kcC" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"kdx" = ( -/obj/structure/table/standard, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "tourbus_windows"; - name = "window blast shields" - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) -"keg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/station_map{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"keV" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"keX" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"kiw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"kjn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"kkW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"kmK" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"kmS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"knU" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"kqo" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/iaa/officea) -"ksL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"kun" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"kuQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"kuU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"kwO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/upperhall) -"kyC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"kBF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/door/window/southleft{ - dir = 1; - req_one_access = list(19,43,67) - }, -/turf/simulated/floor/tiled/eris/dark/bluecorner, -/area/shuttle/tourbus/engines) -"kCW" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"kFJ" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"kGd" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "iaal" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"kQb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"kRa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"kSJ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/simulated/wall, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"kTn" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"kUh" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"kXo" = ( -/obj/structure/noticeboard{ - pixel_y = -26 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"laB" = ( -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"lcS" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"lgb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - id_tag = "HoSdoor"; - name = "Head of Security"; - req_access = list(58) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"lgo" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Weapons Testing Range"; - req_access = list(47) - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"llH" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"lmq" = ( -/obj/machinery/computer/general_air_control/fuel_injection{ - device_tag = "riot_inject"; - dir = 8; - frequency = 1442; - name = "Riot Control Console" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"lpg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"lpB" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"lqE" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"lqJ" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 4; - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"lqX" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/recreation_area) -"lvH" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"lwp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"lxa" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet, -/area/library) -"lzq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"lAW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"lCq" = ( -/obj/structure/handrail{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/tourbus/cockpit) -"lFc" = ( -/obj/effect/floor_decal/rust/part_rusted1, -/obj/machinery/atmospherics/binary/pump, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"lFG" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"lIe" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"lMj" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/tank/oxygen, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Protosuit Storage"; - req_access = list(58) - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/security/prototype, -/obj/item/clothing/head/helmet/space/void/security/prototype, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"lSv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"lWE" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "hos_office" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/hos) -"lWN" = ( -/obj/machinery/vending/cigarette{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"lXo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"lXv" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"lYT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"mdE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"mel" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"mjs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atm{ - pixel_y = 31 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"mjT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"mwz" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"myZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"mBz" = ( -/obj/structure/closet/lawcloset, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"mDf" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"mFq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"mFy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"mMS" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"mOt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"mUE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"mWk" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"mWX" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"mXo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/library) -"mXu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"mYT" = ( -/obj/machinery/computer/cryopod/gateway{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"nbM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"nfl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ngL" = ( -/obj/structure/table/steel, -/obj/item/weapon/folder/red, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"nlf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"nnY" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"nue" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"nuu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"nyy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"nJe" = ( -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"nKy" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"nLw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"nLX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"nQA" = ( -/obj/machinery/camera/network/security{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"nSq" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"nXZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"oat" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"oav" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "iaal" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"obl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"olG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"ooI" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"ooM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/shuttle_pad) -"opE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"orc" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/medsec_maintenance) -"orP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"oAu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"oCC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"oEh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/upperhall) -"oEj" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"oEL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"oII" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"oIJ" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"oJw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/wall, -/area/tether/surfacebase/medical/storage) -"oKw" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"oLR" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) -"oMh" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"oMK" = ( -/obj/machinery/atmospherics/unary/engine, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"oOD" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "iaar" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/iaa/officeb) -"oPm" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"oPG" = ( -/obj/structure/closet/secure_closet/hos, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"oSv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"oUI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"oWt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/southhall) -"oWD" = ( -/obj/effect/landmark{ - name = "JoinLateGateway" - }, -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"oXx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"oZC" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/donut, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"pcs" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"peS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"pgi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"ple" = ( -/obj/structure/sign/fire{ - name = "\improper PHORON/FIRE SHELTER"; - pixel_x = 33 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"pnq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"pph" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "iaal" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"prD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"psO" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"puE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/holoposter{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"pwF" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) -"pAh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"pCb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"pCv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/red/bordercorner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"pHl" = ( -/obj/structure/table/steel, -/obj/item/weapon/folder/red, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"pIB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"pJL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"pNk" = ( -/obj/machinery/computer/shuttle_control/explore/tourbus, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) -"pOZ" = ( -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"pPe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"pPs" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 20 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"pPQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"pSu" = ( -/obj/machinery/door/airlock/glass{ - name = "Cafeteria" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"qbo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"qda" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/computer/guestpass{ - dir = 1; - pixel_y = -28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"qem" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"qfz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/library) -"qgM" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) -"qkf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - name = "Research"; - sortType = "Research" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"qnv" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"qom" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "tourbus_windows"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/engines) -"qoL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"qqP" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"qqV" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/recreation_area) -"qtt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"qvp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"qwm" = ( -/turf/simulated/wall/shull, -/area/shuttle/tourbus/engines) -"qze" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"qzU" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"qAt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"qDF" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/southhall) -"qGK" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio{ - pixel_x = -4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"qIb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"qKO" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"qQZ" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"qTm" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/southhall) -"qVj" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"qWU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/wall/shull, -/area/shuttle/tourbus/engines) -"qXD" = ( -/obj/structure/bed/chair/comfy/black, -/obj/machinery/button/windowtint{ - id = "hos_office"; - pixel_x = -32; - pixel_y = -25; - req_access = list(58) - }, -/obj/machinery/button/remote/airlock{ - id = "HoSdoor"; - name = "Office Door"; - pixel_x = -26; - pixel_y = -22 - }, -/obj/machinery/button/remote/blast_door{ - id = "surfbriglockdown"; - name = "Brig Lockdown"; - pixel_x = -26; - pixel_y = -33; - req_access = list(2) - }, -/obj/effect/landmark/start{ - name = "Head of Security" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/keycard_auth{ - pixel_x = -36; - pixel_y = -34 - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"rbR" = ( -/obj/structure/cable/orange{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"rnn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"rnG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"rrG" = ( -/obj/structure/table/steel, -/obj/item/weapon/folder/red{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/weapon/folder/red, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 27 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"ruh" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cafeteria) -"rxh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"rzV" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"rAe" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"rBz" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"rCt" = ( -/obj/structure/closet/lawcloset, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"rEZ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"rJT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"rMS" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"rPu" = ( -/obj/structure/closet/wardrobe/xenos, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"rQp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"rWd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"rWx" = ( -/obj/structure/grille, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "sec_processing" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/processing) -"rXW" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"rYy" = ( -/obj/structure/window/basic/full, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/outpost/xenobiology/outpost_storage) -"shx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/upperhall) -"sla" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"snE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"soG" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"sts" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/foodcart, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"suT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"syw" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"sDq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"sDG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"sEq" = ( -/obj/machinery/door_timer/cell_3{ - id = "Cell B"; - name = "Cell B"; - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"sFW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"sGV" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/obj/machinery/door/window/southright{ - dir = 1; - req_one_access = list(19,43,67) - }, -/turf/simulated/floor/tiled/eris/dark/bluecorner, -/area/shuttle/tourbus/engines) -"sJv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"sLa" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"sPd" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Bar" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor, -/area/crew_quarters/bar) -"sSK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"sSW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"sTM" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/skills{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"sWs" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Medical Department"; - departmentType = 3; - name = "Medical RC"; - pixel_x = -30 - }, -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"sWR" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"sXa" = ( -/obj/machinery/holoposter{ - pixel_x = -30; - pixel_y = 30 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) -"sXR" = ( -/obj/item/device/radio/intercom/department/security{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"tcW" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tether/surfacebase/shuttle_pad; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "tourbus_pad"; - landmark_tag = "tourbus_dock"; - name = "Tourbus Pad" - }, -/obj/effect/overmap/visitable/ship/landable/tourbus, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"tit" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"tki" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"tkB" = ( -/obj/item/modular_computer/console/preset/command{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"tqY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"trA" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/bed/chair, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"ttH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"txo" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"txO" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"tyN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"tLk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/button/windowtint{ - id = "iaar"; - pixel_x = -25; - pixel_y = 7 - }, -/obj/effect/landmark/start{ - name = "Internal Affairs Agent" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"tLv" = ( -/obj/machinery/power/smes/buildable{ - charge = 500000 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/bluecorner, -/area/shuttle/tourbus/engines) -"tPE" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/codex, -/obj/item/weapon/book/manual/security_space_law, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"tRg" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"tRk" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"tWn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"tXj" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"tYE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"uaN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"udd" = ( -/obj/machinery/cryopod/robot/door/gateway, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"ueB" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/hos) -"ueU" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"uhm" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"uiJ" = ( -/obj/machinery/chemical_dispenser/full, -/obj/structure/table/reinforced, -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"und" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell A" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/upperhall) -"upV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"uxT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"uyz" = ( -/obj/structure/table/reinforced, -/obj/item/device/megaphone, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"uAI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"uFI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"uIY" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"uNt" = ( -/turf/simulated/open, -/area/tether/surfacebase/security/upperhall) -"uOL" = ( -/obj/structure/table/standard, -/obj/item/clothing/gloves/sterile/nitrile, -/obj/item/clothing/gloves/sterile/nitrile, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"uQt" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"uSA" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tether/surfacebase/shuttle_pad; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "tether_pad_airlock"; - landmark_tag = "tether_backup_low"; - name = "Surface Hangar" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/tether) -"uWw" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "surfsurgery2" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/surgery2) -"uYO" = ( -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/shuttle_pad) -"viF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"vkv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"vna" = ( -/obj/machinery/computer/secure_data, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/item/device/radio/intercom/department/security{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"vnS" = ( -/obj/machinery/chemical_dispenser/full, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"vop" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/weapon/pen/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/pen/blade/red{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"voF" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"vqv" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/upperhall) -"vrU" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) -"vtN" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"vun" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"vvA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"vzs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"vEm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/bookcase, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/command_guide, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"vEJ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"vFm" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "hos_office" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/hos) -"vIh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"vIA" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"vJA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"vKm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"vLM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"vTf" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/table/rack/shelf, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"vWL" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) -"vYr" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/southhall) -"way" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/computer/shuttle_control/tether_backup{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"waR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"wer" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"weK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"whW" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor, -/area/tether/surfacebase/security/briefingroom) -"wju" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"wlf" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/security/breakroom) -"wng" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/upperhall) -"wob" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder{ - pixel_x = -4 - }, -/obj/item/weapon/folder/blue{ - pixel_x = 5 - }, -/obj/item/weapon/folder/red{ - pixel_y = 3 - }, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/clipboard, -/obj/item/weapon/storage/briefcase{ - pixel_x = -2; - pixel_y = -5 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"woN" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "iaal" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/iaa/officea) -"woZ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/flame/candle, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Look's like it's set to the info station... I wonder what else is on?"; - icon_state = "frame"; - pixel_x = 32; - pixel_y = -64 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"wrA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"wtd" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"wur" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"wyi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "tourbus_windows"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/tourbus/general) -"wBv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"wIw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"wKZ" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/structure/bed/chair/office/light, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lobby) -"wPB" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"wPD" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"wPV" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/red_hos, -/obj/item/weapon/stamp/hos, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/tether/surfacebase/security/hos) -"wQf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/power/terminal, -/obj/structure/cable/orange, -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"wQs" = ( -/obj/item/device/radio/intercom/department/security{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"wWo" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter/departing) -"wXr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"xaU" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"xdM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/structure/bed/chair, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/holoposter{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"xku" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/shuttle_pad) -"xkx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"xlW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"xmK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"xog" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start{ - name = "Chemist" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"xpJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"xsf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/security{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"xud" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"xvN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"xxe" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"xxB" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/shuttle_pad) -"xBf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"xEB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"xGw" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/closet/walllocker_double{ - dir = 4; - pixel_x = 28 - }, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/taperecorder, -/obj/item/device/tape/random, -/obj/item/device/tape/random, -/obj/item/weapon/storage/secure/briefcase, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"xHg" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/bookcase, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/command_guide, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"xIO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"xOa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust/part_rusted1{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"xQv" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder/red_hos, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"xQG" = ( -/obj/machinery/door/airlock{ - name = "Internal Affairs"; - req_access = list(38) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"xUo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"xXf" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/light/small, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/tourbus/cockpit) -"xXZ" = ( -/obj/structure/railing, -/turf/simulated/open, -/area/tether/surfacebase/security/upperhall) -"xZw" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/flora/pottedplant/unusual, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/admin) -"ycf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"yet" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"yfW" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/weapon/pen/blade/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/weapon/pen/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"yhU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/hos) -"yir" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Long-Range Teleporter Access" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/southhall) - -(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 -"} -(2,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(3,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(4,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(5,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(6,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(7,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(8,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(9,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(10,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(11,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(12,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(13,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(14,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(15,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(16,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(17,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(18,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(19,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(20,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aab -aac -aac -aab -aab -aab -aab -aab -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(21,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(22,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -adG -adG -adG -adG -adG -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(23,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -adG -adG -adG -adG -adG -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(24,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -adH -ael -aeX -aeX -agt -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(25,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -adI -aem -aab -aab -agu -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(26,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -adJ -aen -aeY -aeY -agv -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(27,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(28,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(29,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aSu -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(30,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aMG -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(31,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -aQD -adG -adG -adG -adG -adG -adG -adG -adG -aQD -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(32,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -arW -aDq -aDq -aDq -aDq -arW -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -aOR -aPv -aPv -aPv -aPv -aPv -aPv -aPv -aPv -aRa -aRa -aRa -aRa -aRa -aSj -aSj -aSA -aSA -aSA -aSA -aSA -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(33,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aCZ -arW -aDa -aDa -aDa -aDL -arW -aDQ -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -aOR -aDU -aPw -aPN -aQb -aQl -aQx -aQH -aMn -aRa -aOV -aPf -aNd -aRa -iRX -kTn -aSA -aQR -aTa -aRY -aSA -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(34,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aCZ -aDc -aiq -sXa -aDe -aDe -aDe -aiF -aDc -aDQ -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -aOR -aBT -aPx -aPO -aPO -aPO -aQy -aQI -aQS -aRa -bgX -aRu -aRI -aRO -eFg -bKS -aSD -aSQ -aTf -aZf -aTx -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(35,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aCZ -aDc -aDf -aDe -aDj -aDr -aDr -aDA -aDe -aDf -aDc -aDQ -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aMG -aMG -aOn -adG -aOR -aPg -aPy -aPO -aTA -aPO -aQy -aQJ -aPO -aRb -aRi -aRg -aRi -aRP -aRZ -aJy -aKz -aLi -aWy -aXF -aSA -adG -aOs -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(36,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -arW -arW -aDd -aDf -aDj -ajt -aDu -aDu -aDR -aDA -aDf -aDT -arW -arW -aVz -aVz -aVz -agw -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aMG -aMG -aMG -aMG -aMG -aNU -adG -adG -aQD -adG -aOR -aPh -aPz -aPO -aPO -aQm -aQz -aQK -aQT -aRa -aRH -aRj -aRv -aRa -aSa -aJz -aKA -aLk -aZK -aWQ -aTx -adG -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(37,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aCY -aDa -aDe -aDj -ajt -aDg -aDB -aDG -aDg -aDR -aVr -aDe -aVx -aDc -aip -aVK -akl -alP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaq -adG -adG -adG -adG -adG -adG -adG -aOf -aOf -aOf -aOf -aOf -aMm -aPO -aQc -aQo -aQL -aXz -aAk -aRa -aMM -aRx -aPA -aRa -aMK -aMq -aSB -aPV -bhe -aXA -aSA -aCO -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(38,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aCY -aDe -aDe -aDn -aju -aDi -aDs -aDs -aUw -aVb -iiv -tqY -tqY -haS -xpJ -orP -aVQ -alP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -acj -alH -alH -alH -aGL -aHE -acj -acj -aHE -acj -acj -aHE -aGL -acj -aHE -acj -acj -aHE -acj -aNV -aNZ -aOf -aOo -aHM -aDo -aOf -aOR -aPP -aOR -aQq -aOR -aOR -aOR -aRa -aRl -aRy -aRa -aRQ -aSc -aSd -aCO -aCO -aCO -aCO -aCO -aCO -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(39,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aCY -aDa -aDe -aDh -akm -aDk -aDs -aDs -aUz -hxc -erS -aDe -aDe -aDc -aVA -sDG -akn -alP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -acj -sLa -aCc -aCc -drR -aCc -aIp -aIW -aCc -hJt -aBV -aCc -aCc -aIW -aCc -aMi -aCc -aCc -aBu -aNS -aEt -aGo -aOp -aOp -aOp -aIr -aIX -aPd -aQe -aQA -aQB -aQM -aEw -aMo -aQM -aRz -aPQ -aRR -aJA -aSg -aLR -aOh -aLM -aMl -aNR -aCO -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(40,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -arW -arW -aDd -aDf -aDm -aDl -aDt -rEZ -dgA -cwI -aDf -aDT -arW -arW -aVE -aWF -akn -alP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -acj -asd -dVE -cWe -hgf -aVp -aVp -aVp -aIY -aVp -aHF -aJC -aLN -aJx -aVp -aVp -aVp -aVp -aJE -aOD -aEy -aPj -aKB -aOE -aLj -aPj -aIZ -aPo -aQn -aRc -aQC -aQC -aQC -aQC -aPR -aRo -aQC -aRS -aSe -bha -aSr -aBf -aMl -aMl -aNR -aCO -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(41,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aDb -aDc -aDf -aDn -aDg -aDu -aDD -aDg -aDN -aDf -aDc -aDz -agw -air -aWF -akn -alP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -acj -aoW -aCm -awh -aGM -aNn -aAt -aJB -aNn -aAO -asf -aNn -aNn -aul -aNn -aMH -aNc -aNn -aNA -aOr -aEt -aGs -aKC -aOp -aMj -aIs -aJa -aQQ -ayw -aQr -aPS -aQZ -aQM -aMp -aQM -aQp -aPS -aRR -aJD -aSs -aEs -aLQ -aNQ -aMl -aNR -aCO -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(42,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aDb -aDc -acm -aDv -aDg -aDJ -aUC -aDO -aDc -aDS -aac -agw -air -aWF -akn -akS -alw -alw -alw -akS -akS -akS -alw -alw -alw -akS -akS -akS -arU -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aiE -aqw -aFL -aBK -aiE -aNL -acj -acj -aNL -acj -acj -aNL -acj -acj -aNL -acj -acj -aNL -acj -aNV -aNZ -aOf -auz -aTD -aHU -aOf -aPE -aPT -aOW -aQs -aOW -aOW -aOW -aRe -aRn -aRB -aRe -aRT -aSc -aSt -aCO -aCO -aCO -aCO -aCO -aCO -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(43,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aDb -arW -aDw -aDg -aDJ -aUF -arW -aDS -aac -aac -agw -air -aWF -akn -akS -alx -amm -amM -anv -anZ -aoq -amM -apm -amM -aqr -arc -arv -arV -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aiE -aqA -aqz -aFp -aGN -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -adG -adG -adG -adG -adG -adG -aOf -aOf -aOf -aOf -aOf -aPB -aPU -aQg -aQt -azr -aQN -aQV -aRe -aNT -aRC -aML -aRe -aMK -aSv -aSI -aRk -aBa -aRw -aSI -aCO -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(44,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aCY -aDx -aDE -aDK -aUM -aDP -aac -aac -aac -agw -aVG -aWF -aTO -akS -aly -amn -amN -amN -amN -amN -amN -apn -apI -apI -ard -arw -akS -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aiE -aqC -aBQ -aFJ -aGP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -adG -aNB -aNM -aNM -aNW -adG -adG -aRh -adG -aOW -aEf -aPG -aJb -aQh -aQu -aQE -aQO -aFF -aRe -aMJ -aRD -aRL -aRe -aSa -aSv -aSJ -aSW -aTi -aWR -aSI -adG -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(45,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aCY -aDy -aDF -aDH -aUO -aDP -aac -agw -agw -agw -air -aWF -akn -akS -ahq -amo -amO -anw -anw -anw -anw -anw -anw -aqs -are -arw -akS -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aQW -aiE -aqF -aBN -aCd -aiE -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -adG -aOi -aab -aab -aab -aNM -aNM -aOt -adG -aOY -aPl -aPH -aPW -aQi -aQv -aQP -aQP -aQj -aRf -aRq -aRE -aRq -aRU -aSf -aSw -aLO -aSX -aRd -aXy -aSI -adG -aOF -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(46,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -arW -aDz -aDz -aDz -aDz -arW -aac -agw -ahd -ahS -cpd -aWF -akn -akS -alA -amp -amP -anx -anx -anx -anx -anx -anx -aqt -are -aMI -akS -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aiE -aqx -awb -ang -aiE -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -adG -aND -aMG -aMG -aMG -aMG -aab -aOm -adG -aOY -aPm -aPI -aPX -aTB -aQj -aQG -aQG -azU -aRe -aRr -aRF -aRp -aRe -eFg -bKS -rYy -aSY -aTk -bhf -aSI -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(47,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -agw -agw -agw -air -aWF -akn -akS -alB -amp -amP -anx -anx -anx -anx -anx -anx -aqt -are -arw -arV -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aiE -axP -aBQ -aGn -aiE -aac -aac -aac -aac -aac -aac -aac -aac -aac -aQU -adG -adG -adG -adG -adG -adG -aOi -aOm -adG -aOZ -aPn -aPJ -aPY -aQk -aQw -aQj -aQj -aQY -aRe -aRs -aOG -aOS -aRV -pPs -lcS -aSI -aRM -aRt -aRA -aSI -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(48,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -kqo -kqo -kqo -kqo -kqo -abz -abB -jJd -oEL -akn -akS -alC -amp -amQ -any -any -aor -aoS -anx -anx -aqt -are -arw -arV -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aiE -asg -azN -aGp -aiE -azL -azL -azL -azL -azL -azL -azL -azL -azL -azL -azL -azL -azL -azL -azL -adG -aOi -aOm -adG -aOW -aPK -aPK -aPK -aPK -aPK -aPK -aPK -aPK -aRe -aRe -aRe -aRe -aRe -aSz -aSz -aSI -aSI -aSI -aSI -aSI -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(49,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -kqo -rCt -cbM -wob -kqo -kqo -kqo -xkx -vun -bhu -akS -alD -amq -amQ -any -any -alE -aoT -anx -anx -aqt -are -arw -arV -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aiE -arj -aBP -aFo -aGQ -aoL -aBU -aCx -aJF -aFw -aLl -aLS -aLS -aMN -aLS -aLS -aLS -azL -azL -azL -adG -aOi -aOm -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -aRh -adG -adG -adG -adG -adG -adG -adG -adG -aRh -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(50,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aae -aae -aae -kqo -kCW -hxY -bUM -adk -bTC -woN -abA -aDW -akn -akT -alE -amr -amQ -any -any -aos -aoU -anx -anx -aqt -are -arw -akS -aac -aac -aac -aac -aac -aac -aac -aac -aac -ahh -ahp -ahp -ahp -ahh -afK -afK -afK -afK -afK -aoy -amT -obl -jAt -azL -aFN -aBW -aBW -aJG -aKE -aLl -aLT -aLS -aLT -aLS -aNq -aLS -azL -azL -azL -adG -aOi -aab -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(51,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aQW -aae -aae -aay -abI -kqo -xHg -ksL -adx -cEx -vop -woN -abA -ajA -akp -akT -alE -amr -amQ -any -any -any -any -any -any -aqu -are -arw -akS -aac -aac -aac -aac -aac -aac -aac -aac -aac -ahj -ahr -apA -atV -ahh -auu -auu -axF -ayr -aBe -afK -aAm -cGt -cJL -azL -aBb -aBW -aCy -aJH -aKF -aLm -aLS -aLS -aLS -aLS -aLS -aLS -azL -azL -azL -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(52,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aae -aan -aaX -abJ -xQG -gym -wer -tki -hIu -lqE -woN -abA -aDW -akq -akU -alF -amr -amQ -any -any -any -any -any -any -aqu -are -ary -akS -aac -aac -aac -aac -aac -aac -aac -aac -aac -ahj -ahT -atp -atW -ahh -auu -auu -auu -ayB -aBg -afK -aAY -eJm -tRg -azL -aBc -aBW -aBW -aJI -aKE -aLl -aLT -aLS -aLT -aLS -aNr -aLS -azL -azL -azL -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(53,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaf -aau -abC -adf -kqo -kGd -oav -pph -pph -cMO -kqo -bsb -aUd -akr -akV -alG -ams -amR -anz -anz -anz -anz -anz -anz -aqv -are -arw -arV -aac -aac -aac -aac -aac -aac -aac -aac -aac -ahj -ahT -atq -akt -ahh -auu -auu -axO -ayB -aBh -aBj -aCs -mUE -tWn -aTe -uaN -aBW -iQr -gtp -aKG -aLl -aLS -aLS -aLS -aLS -aLS -aLS -azL -azL -azL -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(54,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaf -aav -qqP -abL -abO -abV -aco -acu -acu -acu -acA -fkn -aWF -aiJ -akT -alE -sSK -amN -amN -amN -amN -amN -amN -apJ -apI -arf -arz -arV -aac -aac -aac -aac -aac -aac -aac -aac -aac -ahh -ahU -atr -atY -ahh -auu -auu -axO -ayN -aAT -aBw -aCt -oUI -wrA -lgo -lSv -kuU -kuU -mWX -aKE -aLl -aLT -aLS -aLT -aLS -aNr -aLS -azL -azL -azL -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(55,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaf -aaw -abF -abM -abU -abW -act -acz -acz -acz -acB -aUc -aUf -akx -akT -acY -ueU -arg -arg -arg -arg -arg -arg -aeo -arg -arg -arA -arV -aac -aac -aac -aac -aac -aac -aac -aac -aac -ahj -aiu -atB -aua -ahh -auu -auu -axO -ayP -auc -afK -kyC -jrn -feu -azL -aFQ -aBW -aJd -aJL -aKH -aLo -aLS -aLS -aLS -aLS -aLS -aLS -azL -azL -azL -aaq -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(56,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaf -aau -abG -prD -jYD -boy -boA -boB -boB -boC -jYD -pnq -pPQ -aku -akS -aMS -jBB -amv -amv -amv -amv -amv -amv -apL -arh -arh -arB -akS -aac -aac -aac -aac -aac -aac -aac -aac -aac -ahj -aiw -atC -aub -ahh -auV -auV -ayk -ayT -ayW -afK -aBi -mXu -kXo -azL -aBI -aBW -aBW -aJG -aKE -aLl -aLT -aLS -aLT -aLS -aNr -aLS -azL -azL -azL -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(57,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aae -aax -abH -abN -eEW -oXx -pIB -qoL -mFy -keV -oOD -kuQ -aWF -akv -akS -alJ -jBB -amv -anB -aoa -aot -gLg -amv -apM -aiK -ari -arC -akS -aac -aac -aac -aac -aac -aac -aac -aac -aac -ahj -aiy -atD -alI -ahh -auW -awO -ayl -azl -aFi -afK -aIq -mXu -lvH -azL -aoQ -aCb -aSH -aJM -aGl -aLp -aLS -aLS -aMO -aLS -aLS -aLS -azL -azL -azL -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(58,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aMG -aac -aac -aac -aac -aac -aac -aQW -adR -adR -adR -adR -aac -aac -fzy -fzy -aTY -fzy -jYD -vEm -waR -adP -bUT -yfW -oOD -kuQ -aWF -aWN -akY -akY -fxh -lqX -qqV -akY -akY -akY -akT -apN -akT -akS -akS -akS -afj -afj -afj -aac -afM -afM -afM -afM -afM -ahh -ahh -ahh -auq -ahh -afK -afK -afK -azG -afK -afK -ayR -ttH -txO -azL -azL -azL -aTe -azL -azL -azL -azL -azL -azL -azL -azL -azL -azL -azL -azL -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(59,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aNU -adG -aaq -aaq -aac -aac -aac -aac -aac -shx -uNt -uNt -kwO -aac -aac -fzy -aeq -afn -adh -jYD -efR -vkv -wur -tLk -oKw -oOD -kuQ -aWF -aNE -akY -alK -oSv -aDZ -aDZ -aob -aKv -akY -apo -apO -aqB -afj -aMw -arD -afQ -awL -afj -aac -aEi -aXH -axh -afL -agy -ahk -aiA -atE -ahi -awA -awW -axG -aHj -aAr -ayu -aFm -aCB -qkf -dKj -aGR -aHI -aHj -aTh -aJN -aJW -aKR -aFW -aMz -aNF -bkp -aKk -bkP -blc -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(60,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -adG -aaq -aaq -aac -aac -aac -aac -aac -shx -uNt -uNt -kwO -aac -aac -afc -aer -afo -age -jYD -mBz -xGw -vEJ -adl -jFq -jYD -mjs -aWF -akx -akZ -alL -giR -amw -amw -amw -aov -akY -air -ajR -akx -afj -ajK -avF -afj -afj -afj -afi -aXG -adL -ayi -afV -agD -ahm -ajy -azn -awD -axI -axN -ayO -ayv -aze -azJ -aze -aBX -mel -iXM -aAo -aBL -ahf -aJe -aJO -aJW -aKS -aLX -aMP -aNF -bkq -bkE -bkQ -blc -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(61,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -adq -adq -aai -aai -adq -adq -aai -aai -adq -aaM -xXZ -adR -aac -aac -afc -vIh -tYE -agO -jYD -jYD -jYD -jYD -jYD -jYD -jYD -oAu -aWH -aWU -akZ -alL -giR -amw -amw -amw -aow -akY -app -ajR -aiD -afj -rAe -sla -afP -awM -afj -arn -aEi -aXJ -afh -aXL -afh -ahn -ajI -atE -awx -awB -axD -axH -ayH -awB -ayQ -aAM -ayS -azf -azK -aAp -apK -aCe -aJf -aJP -aJW -aLq -aLY -aMQ -aNF -bkr -bkF -bkR -blc -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(62,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -abX -agR -pJL -gae -aUe -upV -dMk -aak -adq -aaN -abD -adR -aac -aac -fzy -aet -xaU -bxa -ahv -adj -aiL -adR -qgM -aqO -aVX -kuQ -ajM -akx -akZ -amw -txo -peS -weK -aod -aox -aoV -apq -aiC -avj -aiH -opE -xvN -afj -afj -afj -arn -afh -aXL -afh -aXP -afh -aho -ajE -atT -atU -auY -auY -awE -azc -auY -atU -aAS -ayU -aCr -aqS -aqS -aqS -asa -aHK -asa -aqS -aLr -aLZ -aLr -aqS -bks -bkG -bks -aqS -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(63,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -abX -agS -dlX -oIJ -iLR -aRJ -cnO -aal -adq -aaO -abE -adR -adR -adR -fzy -fzy -fzy -fzy -fzy -mOt -sEq -adR -adR -adR -adR -puE -aWF -akx -akZ -alN -amw -yet -olG -amw -amw -akZ -apr -apQ -aiG -afj -aqD -awo -afO -awM -afj -arn -afh -aeu -aeK -agC -ahg -aiz -atF -atT -aur -avt -avS -awK -azd -axC -auY -aAW -ayU -azq -asa -atX -aAq -aCv -aHL -aJh -aJX -aLs -aMa -aMR -aSC -aCv -aMa -bkS -bld -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(64,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -adq -aUb -wlf -oZC -qtt -gZn -mjT -aam -adq -aaP -lzq -acq -acC -adR -rrG -adg -adU -fNA -rWx -qAt -snE -ajz -wng -itr -oEh -kuQ -aWF -akx -akZ -alN -amw -yet -olG -amw -amw -akZ -aix -apQ -aqE -afj -afj -afj -afj -afj -afj -arn -atG -aud -aud -aud -aud -aud -aud -atT -aus -avu -avT -awX -axj -axE -ayo -ays -azy -azw -asl -atZ -aAU -aCw -aHN -aJj -aJY -aLt -aMr -aNe -aWr -bkt -bkH -bkT -bld -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(65,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -abX -aUe -sWR -hEt -aUe -nSq -tRk -aaj -aaG -abj -abY -abY -acD -adR -vna -cVg -bzK -aWW -adW -qAt -iHX -vqv -bJV -bmt -oEh -kuQ -aWF -aWO -akY -alO -amx -ana -anF -aiI -aVS -akY -aix -apQ -asS -aha -aha -aOb -ass -asR -agw -arn -atG -aud -aux -aux -aux -aux -aud -atT -aqy -avv -avU -awY -axl -axJ -auY -ayX -azA -aCN -asa -ayp -aAV -aCz -aHO -aAV -aFv -aFV -aHD -aNf -aXm -aAV -aMa -bkU -bld -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(66,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -abX -aWo -sXR -nnY -psO -vzs -jPW -mMS -adq -efc -iFr -iFr -acX -adR -mWk -kFJ -afU -hxR -rWx -qAt -dSQ -adR -adR -adR -adR -aWm -aWG -aWS -akY -akY -akY -anb -anb -akY -akY -akY -aps -apR -aqG -akE -akE -akE -ast -aoz -aqP -ase -atG -aud -aux -aux -aux -aux -aud -atT -auv -avw -avV -awZ -axz -axL -atU -ayZ -azA -aCV -aqS -ayq -aAX -aCA -aIu -aJk -aCz -aLv -aMt -aNg -aAZ -bku -aMa -bkV -bld -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(67,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -ueB -ueB -ueB -ueB -ueB -ueB -ueB -ueB -ueB -aaV -oat -acp -acH -adR -nue -aev -oEj -agf -rWx -qAt -tyN -vqv -und -aVH -oEh -aWn -aWF -aWT -ala -agw -amy -amy -amy -amy -amy -aik -apt -apS -aqH -apS -apS -apS -ajR -apX -alP -aac -atG -aud -aux -aux -aux -aux -aud -atT -auw -avx -avW -avx -axA -axM -atU -aBH -azz -aFT -aqS -azo -aAZ -aGS -aIv -aJm -aKK -aLw -aMu -aNh -bko -bkv -aMa -bkW -bld -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(68,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -agQ -aWs -lMj -oPG -acF -tkB -tXj -oMh -ueB -aaW -abY -abY -acI -adR -mdE -aew -bzK -agg -adW -qAt -snE -ajJ -aTX -aVI -oEh -aWn -aWF -aWT -ala -alP -amy -amy -amy -amy -amy -aik -apu -apT -aqI -ark -ahc -wPD -avG -apX -agw -aac -atG -aud -aux -aux -aux -aux -aud -atT -anA -avQ -awy -asb -axa -ayj -amh -aBS -azB -aHP -aqS -azD -aBn -aGT -aIw -aIw -aKL -aLx -aMv -aIw -aIw -bkw -bkI -bkw -bkC -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(69,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -agQ -aWv -aWv -bqw -lpg -pOZ -aWv -yhU -ueB -aIL -pCv -abZ -acJ -adR -adQ -aex -afu -agh -rWx -qAt -aiO -adR -adR -adR -adR -xBf -aWF -aWT -ala -alP -amy -amy -anG -amy -amy -aoX -aoX -aoX -aqJ -aoX -aoX -aix -avG -apX -alP -aac -atG -aud -aud -aux -aux -avY -aud -atT -amh -avX -aym -atU -ayt -ayV -atU -xdM -azC -aCV -aqS -azE -aBO -aHG -aIw -aJQ -aKM -aLy -aMx -aNs -aIw -bkx -bkJ -bkX -ble -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(70,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -ueB -abK -aWv -dVZ -lFG -pOZ -aWv -ghk -vFm -lAW -acL -adR -adR -adR -adW -aey -adW -adW -adW -afv -ajP -ajN -aUi -ado -adR -aWn -aWF -aWT -alb -agw -amy -amy -amy -amy -amy -aoX -apv -apU -aqK -apv -aoX -juj -avG -apX -alP -aac -ats -ats -aJr -auZ -auZ -avZ -awF -atU -aoc -azk -aGB -atU -atU -ayn -atU -aza -aAg -aWf -aqS -azH -aCu -aqS -aIw -aJR -aKN -aLz -aMy -aNt -aIw -bky -bkK -bkY -ble -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(71,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -agQ -bhk -aWv -qXD -gnE -rnG -qVj -gvp -lgb -aaY -add -adS -xsf -aWZ -qze -aez -nyy -agH -afm -afw -asM -axq -ajQ -aVL -adR -aWp -ajM -akv -alc -alc -amz -alc -alc -alc -alc -alc -apw -apV -aqL -arl -aoX -uFI -isl -keX -agw -aac -aac -ats -aPD -ava -awa -cRi -awG -axc -axR -aAv -aGC -pAh -ayY -aBR -aBY -azb -azM -aWj -bbG -aXd -aHQ -aIx -aJg -aJT -aKO -aLU -aKO -aNu -aIw -bkz -bkL -bkZ -ble -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(72,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -ueB -acE -aWv -sTM -wPV -pOZ -aWv -qnv -lWE -abi -adT -acr -jKY -adn -jmQ -agd -aeB -aHH -afs -agV -atL -aGr -aSO -aSR -adR -aWq -ajM -akx -alc -alQ -amA -alc -anH -aog -aoA -alc -apx -apV -aqL -arm -aoX -daN -avG -apX -alP -aac -aac -aue -auA -avC -rMS -hoQ -aEr -axd -aEr -aEr -aEr -nLX -aEr -aEr -auX -azF -azI -azF -lYT -aGU -aGV -aAs -aJg -aJT -aKP -aLU -aKP -aNv -aIw -bkA -bkM -bla -ble -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(73,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -agQ -aWv -aWv -kkW -lpg -pOZ -aWv -pCb -ueB -adO -adO -fGm -adO -adO -whW -whW -iLF -adO -aft -agW -awc -aKJ -aSP -aSS -aWb -aWn -aWF -aNE -alc -alR -amB -anc -anI -aoh -aoB -alc -apy -apW -aqM -apy -aoX -aOa -ajR -apX -alP -aac -aac -aue -akk -avC -sSW -lpB -awH -axe -awH -aOq -azg -azO -aAu -aBk -aFj -awC -eQN -aXe -fgW -aGW -aHR -aAs -dbk -aJU -aKQ -aLV -aKQ -aNw -aIw -bkB -bkO -blb -blf -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(74,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -agQ -bhB -aWv -hVc -acK -lmq -aWv -syw -ueB -tPE -acW -acs -adm -adr -rnn -rnn -agb -adO -adi -ahw -aeJ -aeJ -axn -aeJ -aeJ -aWn -ajM -akx -alc -alS -amC -alc -anJ -alc -alc -alc -agw -agw -agw -agw -aoX -asc -ajR -apX -agw -aac -aac -ats -auB -avC -bSe -aff -azP -azP -azP -azP -azP -axg -axg -axg -axg -axg -axg -axg -aXk -aGX -aHR -aHJ -aIw -aIw -aIw -aIw -aIw -aIw -aIw -bkC -bkC -bkC -bkC -aNi -aNi -aKj -aKj -aNi -aNi -aKj -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aSu -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(75,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -ueB -dFg -dFg -ueB -ueB -dFg -dFg -ueB -ueB -xQv -aIF -acG -aWY -adN -adY -afl -eCP -adO -adp -ahC -agG -ahx -ahI -qzU -aiW -aWn -ajM -akx -ald -alT -amD -aQd -ane -ane -ane -alc -apz -afk -aqN -agw -arE -aix -ajR -apY -agw -ats -ats -ats -auC -avC -bSe -awe -azP -axU -azi -aAw -azP -aCG -azT -azT -aFn -aFt -aGY -aXf -axg -aIG -aHT -aUl -aJn -aJZ -aKT -aKT -aKT -aKT -aMT -aKT -aKT -aKT -aKT -aKT -aKT -aMT -aKT -aKT -aOH -aPb -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(76,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -bou -ajG -ajG -ajG -aac -aac -aac -aac -aac -aac -agI -kQb -eeD -aeb -afl -aXb -aeb -aeC -ade -adO -adX -ahF -agP -ahy -ahV -aiN -aiW -aWt -aWH -aWU -ale -alU -amE -ane -ane -ane -ane -alc -aiv -afN -aqO -agw -arF -aix -ajR -apX -agw -ats -atH -auf -auD -avC -jFz -hGm -azP -axV -azj -aAy -azP -aLP -azT -aEU -aHc -aFu -aHc -aEU -axg -aGZ -aHR -awf -aJn -aKa -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aOI -aPb -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(77,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -bov -bow -ajG -aac -aac -aac -aac -aac -aac -agI -mwz -gZR -bpw -afl -cbn -bpw -afl -agc -adO -aef -ahC -agT -ahA -ahX -aiQ -aeJ -aWu -aWI -akC -alf -alV -amF -anf -alc -alc -alc -alc -agw -agx -agw -agw -agw -ajj -asy -apZ -agw -ats -ats -ats -auE -qvp -xlW -awg -azP -axW -azm -aCM -azP -aCH -azT -aEG -aAE -aFU -lxa -aEV -axg -aHa -aHR -cmQ -ats -aKb -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aLn -aKj -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(78,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aaq -bou -ajG -aaq -aac -aac -aac -aac -aac -agI -lwp -wPB -aeb -aeC -aXb -aeb -afl -gzd -adO -aep -ahJ -agU -kRa -ayC -aiR -aiW -rJT -aWF -akD -alg -alW -amG -ahB -anK -aoi -aoC -aoY -apB -agz -agA -ajb -agE -ahe -ahl -aqa -aha -att -aOb -aha -auF -nbM -nfl -jGK -azP -azP -aTT -azP -azP -aIE -azT -aEG -aEu -aAA -aFU -aER -axg -aHb -aHR -awf -aJn -aKa -aKU -aKU -lCq -jvK -jvK -jvK -bkN -jHw -jML -jHw -jpB -qWU -aTl -aKU -aOI -aPb -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(79,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aaq -bou -ajG -aac -aac -aac -aac -aac -aac -adO -uyz -aIF -ngL -hLd -rQp -pHl -afl -gzd -adO -aes -aiP -awI -aKY -ahZ -aiS -ajL -aiV -aST -akE -alh -alh -amH -anh -anh -anh -anh -aoZ -anh -aqb -alh -alh -alh -alh -asz -alh -alh -alh -alh -alh -auG -kjn -ceN -jGK -axi -awd -azQ -aAz -akM -aAi -azT -aEU -aEz -aEP -aEP -aFs -axi -aGX -aHR -awf -aJn -aKa -aKU -aKU -jvK -jvK -kdx -jvK -cnN -mDf -eiO -cnZ -fYr -qwm -qwm -aKU -aOI -aPb -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bhX -aaq -aaq -biy -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(80,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aaq -bou -ajG -aac -aac -aac -aac -aac -aac -adO -qGK -hCr -hCr -wQs -ads -nQA -hCr -crh -adO -aeI -afR -ahu -aSN -aia -aiT -ajO -aWw -aSZ -aWV -ali -ali -ali -ali -ali -ali -ali -aOT -ali -baQ -baJ -baJ -baJ -baJ -baJ -axK -aEo -baH -baL -baL -baL -bby -aEp -afd -axk -ayy -azR -aAA -azV -azT -azT -aEI -aBs -aGw -aHg -cAG -axk -aXq -aXn -aIy -ats -aKD -aKU -aKU -ddn -eCG -oLR -jvK -oPm -kmK -xOa -dVW -kun -kBF -qom -aKU -avs -aKj -aac -aac -aac -aac -aac -aac -aac -aac -aac -bhE -bhE -bhE -bie -bio -bhE -bhE -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(81,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -bou -ajG -aac -aac -aac -aac -aac -aac -adO -adO -adO -adO -adO -adO -adO -adO -adO -adO -aeJ -aeJ -aeJ -ahG -aiM -aiU -ajS -oCC -ajR -akn -alj -alj -alj -alj -alj -alj -alj -alj -alj -alj -alj -alj -alj -alj -alj -asT -aTu -asT -alX -alX -auH -bbA -afe -afg -axS -ayz -azS -ayz -mXo -qfz -qfz -cSl -hEN -ayz -ayz -eIs -axS -aXr -aXp -awf -aJn -aKa -aKU -aKU -ddn -pNk -vrU -dJm -kiw -kcC -eGv -lFc -dGZ -sGV -qom -aKU -aOI -aPb -aac -aac -aac -aac -aac -aac -aac -aac -aac -bhE -bhU -bhY -bif -bip -biz -bhE -aac -aac -aab -aMG -aMG -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(82,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -bou -ajG -aac -aac -aac -aac -aac -aac -aaE -abk -abP -acv -abR -abe -aaE -aeD -afW -agJ -ahD -aic -aeJ -ahH -aeJ -aeJ -ajT -aWn -ajR -akn -alj -all -awj -alj -aZk -aZw -atu -alj -baf -bar -aPi -awz -bab -bbC -bbE -asT -aPk -asT -alY -alY -auI -bbA -ajM -aoG -axT -ayA -azW -aFr -aEJ -aFr -aXo -aFc -aFr -aFr -aFr -aFr -aXl -aXs -aXu -aIz -aJn -aKa -aKU -aKU -ddn -pwF -hlF -jvK -uhm -gUL -rbR -hCB -wQf -tLv -qom -aKU -aOI -aPb -aac -aac -aac -aac -aac -aac -aac -aac -aac -bhE -bhV -bhZ -big -biq -biA -bhE -aac -aac -aaq -adG -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(83,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -bou -ajG -aac -aac -aac -aac -aac -aac -aaF -abl -abQ -acw -acw -acw -blT -blU -orc -agK -ahE -aid -aiY -aTr -aaE -ahd -ahS -aWx -ajR -akn -alj -aqc -awk -axf -aZl -aZx -aZL -aBo -bag -bas -aZU -aZV -aXW -bbD -bbH -asT -aYb -asT -alY -alY -auI -bbA -ajM -aoI -axk -azh -aMk -ayG -aBt -azT -aXC -aFd -azT -azT -aMk -aXw -axg -aXt -aIa -aOJ -ats -ieb -aKU -aKU -jvK -jvK -ivq -jvK -rzV -fcg -tcW -iqb -fru -qwm -qwm -aKU -aOK -aKj -jBt -jBt -jBt -jBt -jBt -jBt -jBt -aac -aac -bhE -bhE -bhE -bih -bir -bhE -bhE -bhE -bhE -bhE -bhE -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(84,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -bou -ajG -aac -aac -aac -aac -aac -aac -aaF -abm -abR -abR -abR -abS -aaE -bmo -orc -agL -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aWz -ajR -akn -alj -awi -awl -alj -aZm -alm -avl -alj -avR -bat -baG -bba -aYn -asT -asT -asT -aYj -asT -asT -asT -asT -bbF -ajM -apb -axg -axg -axg -aHd -aBv -azT -aXC -aFe -azT -aBq -axg -axg -axg -aHh -aIa -aIz -aJn -aKa -aKU -aKU -xXf -jvK -jvK -jvK -wyi -jHw -caw -jHw -gHh -qWU -aTl -aKU -aOI -aKj -kUh -vWL -ghW -wWo -rPu -ixw -bhE -bhE -bhE -bhE -bhE -bia -bii -bis -biB -bhE -biR -bje -bjl -bhE -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(85,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -bou -aaH -aac -aac -aac -aac -aac -aac -aaE -aky -aas -abR -adZ -abR -aaE -bmp -bod -agM -aeG -aif -sWs -agk -trA -aUs -aeG -aFf -aWL -aNp -alj -alj -alj -alj -alj -alj -alj -alj -bai -aZx -baK -aZx -aZj -asT -aEe -aXY -aYb -aYs -aYx -aYE -aXx -bbF -ajM -ape -aEA -ahd -axg -ayI -aCF -azT -aXC -aEC -aEH -aSF -axg -atH -aGy -aUk -aIa -aIz -aJn -aKa -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -jYd -aKU -aKU -aKU -aKU -aKU -aOI -aKj -uIY -udd -oWD -cSL -csd -ehr -bhE -bhF -aLW -bhQ -bhW -bib -bij -bit -biC -biJ -biR -biR -biR -bhE -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(86,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -bou -ajG -aac -aac -aac -aeV -afG -afG -aah -aah -aah -aah -aah -aah -aah -bmN -aah -aah -aah -ieo -wKZ -agl -lXo -qda -aWg -aWB -ajR -akn -aYO -aZi -awn -atI -aYP -aYT -aYT -alj -baj -bau -aNC -bbb -aZr -aZT -aEg -aYb -aYb -aYp -aYy -aYF -aXB -bbF -ajM -apf -aWC -aWC -aWC -aWC -aWC -aED -aEQ -aEE -aAB -aAB -aAB -aAB -aAB -aHf -aIa -aIA -ats -aKb -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -jYd -aKU -aKU -aKU -aKU -aKU -aOI -aKj -hqs -nJe -fKo -cSL -csd -hQl -bhE -bhG -bhN -bhR -bhE -bhE -bik -biu -bhE -bhE -biS -bjf -bjm -bhE -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(87,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -abd -ajG -aac -aac -aac -afD -bjH -aeQ -ago -acS -bmm -ahO -aeR -afE -adw -ady -adz -azu -aSM -afF -aja -aTK -agX -aVW -aWh -qIb -mFq -baz -aYV -aEj -awn -aOU -aYQ -aYU -aYU -alj -aZG -aZH -aZH -aZH -aYc -asT -bac -aYb -aYb -aYp -aYz -aYG -aXB -bbF -ajM -apD -aWD -baZ -bfI -bfH -aWC -aWC -aYC -bcI -aAB -aCL -aut -aEO -kSJ -aHf -aHW -aIz -aJn -aKd -wtd -wtd -qem -aKV -aKV -aKV -aKV -aKV -voF -aKV -aKV -aKV -aKV -aKV -aOL -aKj -gTL -udd -oWD -ddl -hmT -gSr -bhE -aLu -bhO -aMs -bhE -bic -bil -biv -biD -biK -biT -bjg -bjn -bhE -adG -aOs -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(88,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOn -ajG -ajG -aad -aat -aat -aah -bjI -blm -blw -blK -bmn -ahP -ahP -bmG -bmL -bmU -bnn -aDp -abw -ahW -lqJ -bno -agX -aVn -aeG -qIb -avG -akn -aYO -aEv -awn -aJi -aYR -aYR -aYX -aYZ -aYR -aYR -aYR -aZe -aYR -aEa -bad -aYb -aYb -aYt -aYA -aYH -aXB -bbF -aEq -apE -bed -bbd -bci -bbd -bbd -bgg -bdb -bdp -bgP -aAx -aCQ -aFh -aGz -aXM -aHX -sDq -aJn -bMK -bMK -bMK -rxh -jZe -uxT -ifI -dXv -ooM -uYO -xxB -xud -aMU -aKe -aKe -aKe -aKj -ooI -uQt -vIA -tit -mYT -geQ -bhE -bhE -bhP -bhT -bhE -bid -bim -biw -biE -bhE -bhE -bhE -bhE -bhE -adG -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(89,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -ajG -ajG -aag -aaQ -aaQ -aah -bjI -bln -blx -blR -bmq -aie -blx -bmH -acR -aap -akb -aFC -aSM -ahY -afz -bnX -exM -ahK -aUU -qIb -avG -akn -aYO -aZs -aTt -aEb -aSE -aYS -aYh -aYS -aYY -aZa -aZc -ajB -aPe -aZh -aZA -aZO -aYo -aYu -aYI -aPC -aXD -bbF -avG -aNE -aWC -bbe -bcj -bcH -bcP -bcU -bdd -aFY -aAB -aCP -aEK -aFX -aAB -aZD -aHY -kmS -ats -aKf -aKf -aKj -aKf -aKj -aKj -aKj -aKf -aKg -cdv -aKf -aNX -aKj -aKj -aKf -aKf -aPs -aPs -aPs -aPs -bhh -aPs -yir -aPs -aPs -aPs -aPs -aPs -aPs -bin -bix -biF -biF -biU -bjh -bjo -biF -biF -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(90,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -ajG -ajG -aag -aba -acM -aah -afH -blo -blA -blS -bmr -acR -blA -bmI -acR -aim -ake -aGm -aah -adE -aUV -bnY -agX -ahL -aUU -xIO -isl -bhu -alo -alo -alo -ayx -ayx -ayx -ayx -ayx -aZv -ayx -ayx -ayx -ayx -asT -ajH -aYf -bae -aYv -aYB -aYJ -aXB -bbF -ajR -akx -aYC -aYC -aYC -bcI -bcI -bcI -bgL -bcI -bcI -aYC -aYC -aYC -bfg -baD -aHZ -llH -aJo -aKg -aKg -aLA -aKg -gfg -aMV -aKe -aKg -aKg -cdv -aKg -aKe -aOc -aKe -aKg -aMA -aPu -aPM -beU -bfj -bhi -qbo -beU -bhm -beU -bhp -beU -beU -gRG -laB -beU -biF -bsr -biL -biL -biL -bjs -biF -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(91,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -adG -adG -aag -aaQ -acN -afD -abx -blp -blB -blS -bms -acR -blB -bmI -acR -aiB -akw -bnF -bop -aNO -afB -agm -aVk -ahM -aVt -aRN -dDQ -akn -alk -aZt -vtN -ayx -aZn -aYq -aZN -aPa -aZY -bav -baN -bbc -bbp -asT -aTC -aYg -bae -aYb -aTv -aYK -aXB -bbF -ajR -aGu -aYC -bbf -bcn -bcr -aHz -bdm -bdg -bdo -beJ -bgk -bbk -bgB -aYC -bdr -aIa -lIe -aJn -aKh -aKW -aKf -aMb -sFW -aMW -sFW -ghf -ghf -gLd -ghf -sFW -aMW -sFW -aOu -aNx -aPs -aPZ -beV -bfJ -cYm -bhj -beV -oWt -beV -bhj -beV -pPe -nLw -bhw -nLw -biG -biM -biV -biL -biL -biL -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(92,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -bou -ajG -ajG -ajG -aag -abq -aee -aah -bjO -blp -blC -blV -bmu -aie -bmM -bmJ -acR -ajg -akz -bnG -uAI -aOX -gtn -afC -uAI -ahN -aii -aRW -aeO -akn -bbq -woZ -bbu -ayx -aZo -aYW -aZb -aZz -aTU -baa -bal -bam -bbw -aEc -aYm -bak -aZI -aYb -aYy -aYL -aXB -bbF -ajR -aGA -aEd -bfc -aGk -bcJ -bcQ -bcW -bcT -bcR -bah -bgk -bbk -bfc -bbg -cWU -aIb -aID -aJp -aKi -aKX -aLB -aMc -aMB -aug -aMB -rWd -wIw -ieE -ieE -vLM -aOd -hth -aOv -aPc -aPL -aQa -hId -bgm -hId -ely -hId -jCE -hId -bhq -hId -cHf -beU -bhx -beU -biF -biN -biW -bji -bjp -bjj -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(93,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -bou -ajG -ajG -ajG -aag -abq -iOL -aah -aaI -agj -agq -blK -blK -bmc -bmz -bmP -bmX -bnj -aHS -adA -aTd -aeN -aUW -aVe -aVl -aVo -aij -aeH -avG -akn -alk -bbs -aNo -ayx -aZp -aZB -aZP -aZB -aZC -aZC -baU -ban -bbx -asT -aXX -aYi -aYp -aYw -aYD -aYM -aXE -bbF -ajR -aGA -aEd -bbh -bbk -bcK -bcV -bcX -bcZ -bcS -beR -bgo -bbk -bgv -bco -bds -aIa -aIz -ats -aKj -aKj -aKj -aKf -aKj -aKj -aNj -aKf -cdv -aKg -aKf -aKj -aKj -aKj -eHY -aKf -aPs -aPs -aPs -aPs -bhl -bhl -aPs -aPs -aPs -aPs -aPs -aPs -qDF -bhy -bhs -biF -biO -biX -bjj -bjq -bjj -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(94,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -bou -ajG -ajG -ajG -aag -abq -abq -acb -afX -agn -agN -aWa -aWa -bmd -bmA -bmQ -bmY -aig -acg -bnI -acg -acg -aUX -aVf -akF -aeG -aeG -ajh -avG -akn -alk -alk -bdD -ayx -aZq -aZC -aZC -aZC -aZC -aVV -baV -bao -bap -asT -asT -asT -aYr -asT -asT -asT -asT -bbF -ajR -aGA -aEd -bbk -bbk -bbk -bbk -bdh -bdy -bdF -bbk -bbk -bbk -bbk -bco -bds -aIa -aIB -ats -aFq -aFx -aKj -aMe -aMD -xxe -aMD -aMD -aNG -aNN -aKe -aKe -aMY -aKe -aOw -aKe -aKj -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aPs -beU -bhx -beU -biF -ruh -biX -bjj -bjq -bjt -biF -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(95,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -bou -ajG -ajG -ajG -aag -abs -aSi -aaA -abv -acR -agY -acR -acR -acT -adc -abo -abr -bnk -bnz -bnJ -ace -aUP -aUY -aVg -acg -ahd -ahS -aji -avG -akn -alk -bbt -alk -ayx -ayx -aTy -aTz -aTz -aTz -aTz -aTz -aln -ayx -alo -aqO -asT -aYp -asT -alY -alY -auI -bbA -ajR -aGA -aEd -bbl -beX -beX -bcY -bdq -bbk -bbk -beS -beX -beX -bcM -bco -bds -aIa -aIz -ats -ats -ats -ats -aMf -aKT -aKT -way -aKT -vTf -aKT -aKT -aKT -aOe -aOe -aOx -aOe -aKj -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bhr -beU -bhx -beU -biF -biP -biY -bjj -bjq -bjj -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(96,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -bou -ajG -ajG -ajG -aag -acc -aSk -aUD -abf -blt -agZ -acO -blD -blW -sJv -aih -jSV -bnk -akA -bnK -bnP -bnS -aUZ -aVh -acg -agw -agw -aei -aeP -akn -bbq -aZu -bbu -aou -ayx -aZE -aZR -aZR -aZR -aZR -aZR -bbi -ayx -aqO -aTP -asT -aPp -asT -alY -alY -auI -bbA -ajR -aLh -aYC -beY -bfc -beX -aWk -bdq -aZM -bbk -bax -beX -bfc -bff -aYC -ber -fyZ -aUm -aJn -aAN -aAN -aJn -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKU -aKj -aKj -aOy -aKj -aKj -aNi -aNi -aKj -aac -aac -aac -aac -aac -aac -aac -bhr -beU -bhx -beU -biH -biL -biZ -bjk -bjr -bjj -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(97,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aaU -ajG -ajG -aar -acy -acy -acy -aVN -acy -aci -blq -afy -afx -afy -blq -aek -aeA -acg -bnL -aUL -aUR -aVa -bkk -acg -aVq -aVu -bol -avG -akn -alk -bbs -alk -aAn -ayx -aZF -aqd -aqd -aqd -aqd -aqd -bbj -ayx -alo -alo -asT -aUy -asT -alZ -alZ -auJ -bbA -ajR -aGA -aYC -bbn -aGE -aGE -aYC -bgK -aGE -bgN -aYC -aGE -aGE -aYC -aYC -bey -suT -aIC -aJn -aAN -aAN -aJn -aKU -aME -aME -aME -aNz -aME -aME -aME -aNY -aKj -aOj -aOz -aOM -aKj -aUu -beW -aKj -aKj -aac -aac -aac -aac -aac -aac -aPs -bht -bhx -beU -biH -biL -bja -biL -biL -biL -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(98,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aac -aaU -ajG -aaq -uWw -aTs -aUH -aVT -aXc -acd -blq -afb -adM -afA -blq -abt -aeL -akA -bnM -bnP -aUS -aJl -aVj -acg -auS -aVu -bol -avG -akG -aha -aha -aha -aha -aks -apS -aqQ -cFA -aqR -aZS -aZZ -anL -axb -viF -vKm -nlf -wXr -vvA -myZ -myZ -myZ -dsF -aDV -aZd -bbz -bcs -bcs -bcs -bct -aAd -bcx -aLf -bcy -bcz -bcs -bcA -bcO -beB -aHW -knU -aJn -aAN -aAN -aJn -aKU -aMF -aMZ -aNk -uSA -aNJ -aNP -aTg -aKU -abg -aOk -aOA -aON -aKj -bde -bfh -bgu -aPb -aac -aac -aac -aac -aac -aac -aPs -bhv -bhz -bhC -biH -dyV -bja -biL -biL -bju -biF -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(99,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aaq -aac -abn -ajG -aaq -acy -aTL -aUI -aVU -bhn -bjY -blq -blG -blZ -bmx -blq -aeT -aeM -acg -bnN -bnQ -bnT -xog -aVi -acg -agw -agw -bol -gTN -akL -akH -akH -akH -xEB -vJA -vJA -vJA -xmK -xUo -bqs -xUo -xUo -aCK -aCK -aCK -xUo -fOj -ahR -arG -xEB -akH -akH -aGv -aGD -aGF -aHk -aye -aye -aye -aBr -aHm -aye -aHm -aIV -aXg -aXg -aXK -bfy -gAF -pgi -aUo -aKZ -aTQ -aJn -aKU -aMF -aNa -aNl -aNl -aNK -aNP -aTg -aKU -abg -aOk -aLa -aOO -hCz -beN -bfh -bhg -aPb -aac -aac -aac -aac -aac -aac -aPs -beU -bhx -beU -biH -biL -bja -biL -biL -biL -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(100,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aaq -aaq -abn -ajG -aaq -acy -aTM -aUJ -aVY -bjx -bjZ -blq -blH -aea -bmy -blq -nuu -afa -acg -vnS -akB -adB -acQ -uiJ -acg -aVs -agw -bol -ajM -atc -aMX -ama -amI -dmH -ple -ali -ali -bEd -apC -aqf -aOT -aFI -avP -avP -avP -apS -apS -ajX -aZW -baw -baO -avn -avn -aKx -awU -aCJ -axw -axw -axw -aAf -aCJ -axw -aCJ -aJc -aCU -aGf -aIc -aHt -gVg -aII -aUp -aOQ -aTR -aJn -aKU -aMF -aNb -aNm -aNl -aNK -aNP -aTg -aKU -abg -aOk -aOB -aOP -aKj -beQ -bfh -bhg -aPb -aac -aac -aac -aac -aac -aac -bhr -beU -bhx -beU -biH -biL -bjb -bjk -bjr -bjj -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(101,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aac -aaq -abn -ajG -aaq -uWw -aTN -aUK -aVZ -adF -ach -blq -aeS -aec -bmC -blq -ajk -box -acg -acg -aTd -bnU -acg -acg -alo -nKy -agw -bom -aWI -avH -alo -amb -aio -ank -aio -aoE -aCD -aCE -agw -aqg -aqT -apc -aBF -aBF -aBF -aXT -aXT -bbN -aru -aGh -aru -avp -atl -avd -aru -avd -aru -arJ -azv -arJ -aCS -avK -aHr -aCS -avK -arJ -arJ -aHu -sPd -arJ -arJ -arJ -arJ -arJ -aKU -aME -aME -aME -aME -aME -aME -aME -aKU -abg -aOk -aOC -axB -aKj -beT -bfi -aKj -aKj -aac -aac -aac -aac -aac -aac -bhr -beU -bhx -beU -biF -biQ -bjc -bjj -bjq -bjj -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(102,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aac -aac -abn -ajG -aaq -uWw -aaZ -abp -aTq -aUG -aVv -blq -blM -bnq -heL -blq -aka -aca -aed -asA -aNy -aNI -aSb -agp -keg -ycf -ail -bon -ajM -awp -alp -amc -aio -rXW -lXv -axX -alY -alY -agw -aqh -agw -apc -asZ -anN -aVO -ate -ate -baB -asD -baM -api -atf -atw -atP -avD -bej -bfO -bfZ -aHy -bee -aCT -cGs -aHs -baA -aIl -aIO -bgD -asX -bdP -beA -aJs -aKn -arJ -arJ -aKU -aKU -aKU -aKU -aKI -aKU -aKU -aKU -aKU -aKj -aOl -oMK -aPt -aKj -xku -xku -aKj -aac -aac -aac -aac -aac -aac -aac -aPs -beU -bhx -beU -biF -biL -bjc -bjj -bjq -bjt -biF -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(103,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aac -aac -bou -ajG -oJw -acy -acy -acy -acy -acy -acy -blq -blq -blq -blq -blq -abT -aWi -afJ -aIt -aIt -aPq -aSm -anL -bof -bog -boh -boo -akc -awS -alq -alq -amJ -jCn -qQZ -aol -alZ -alZ -apc -aqi -apc -apc -avg -anN -aVO -ate -ate -baB -awv -asw -beF -bda -atO -soG -anj -bfe -avy -bgf -avM -aJS -asX -aIl -aHB -aJv -aIH -jRO -bcc -bdM -bdQ -arJ -arJ -arJ -arJ -arJ -aKj -aKj -aKj -aKj -aKj -aKj -aKj -aKj -aKj -aKj -aKj -aKj -aKj -aKj -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aPs -qDF -bhy -bhs -biF -biO -bjc -bjj -bjq -bjj -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(104,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaq -aaq -aac -abn -ajG -iUu -aaB -aUj -adV -aWe -bjB -aaS -abc -bmg -ada -aVD -adu -bnc -aej -agi -aIR -aLL -aPr -aSb -boe -art -asm -akI -akJ -akK -aBB -aoN -amd -aio -eHk -ioG -aom -aXZ -aYd -adt -aqj -aoH -aww -asp -avq -aBE -aVR -aEY -aZJ -aKc -beu -aqY -anj -anj -oII -anj -aLc -wBv -avz -avM -asX -asX -aIn -aIg -aJK -aKo -aKq -bck -aKr -beh -ayM -aya -bcd -bcd -ayE -bfP -aAl -aId -bdA -ayM -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aPs -bht -bhx -beU -biF -biN -bjd -bji -bjp -bjj -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(105,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -abn -ajG -iUu -aaC -aUt -aUv -aWA -aSo -aSG -aUv -aUv -adb -bmE -adC -aeg -aej -ahz -aIR -aLL -aQF -aSb -anm -arH -asn -aio -aio -aio -aio -aio -aio -aio -aio -anQ -aol -aYa -aYe -aYl -aqk -apg -apc -aGH -aVB -aVO -aZQ -bga -bgc -asD -bev -beG -azZ -atJ -atQ -bfd -anj -avm -avz -avM -asX -asX -asX -aIh -bdv -bbK -bbO -bcl -aAF -bcb -bgS -bgy -bgy -bem -bfC -bcd -bcd -aIe -bdK -ayM -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bhr -beU -bhx -beU -biI -biL -biL -biL -biL -biL -bjw -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(106,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -abn -ajG -aaz -aaD -abb -aeh -aTV -aSp -aSK -blr -blN -adv -blr -adD -ahb -bnu -ajf -aLL -aLL -aQX -aSb -aoj -aXU -asr -aio -ajl -aof -akN -als -ame -aio -ano -anR -aok -awP -awP -awP -awP -awP -awP -aGH -aVB -aVO -bdB -ayL -baP -avp -asL -bdx -bez -beI -bgn -aKu -anj -avo -avz -avM -asX -aLd -aHe -aIi -bdG -aLd -bbP -bcm -aAG -bgF -ayM -ayM -ayM -ayM -ayF -ayM -ayM -ayM -ayM -ayM -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bhr -beU -bhx -beU -biF -gYa -lWN -qKO -ikh -bjv -biF -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(107,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -ajG -aaz -acU -uOL -pcs -aWJ -aSq -aSL -aUv -aUv -abh -iLq -aSU -ahQ -aTb -aga -aMd -aNH -aRK -aSn -aoo -aXU -asv -aio -ajm -akf -akf -akf -amf -amK -anp -anS -asU -arN -aqo -avO -ate -awr -aGb -aVO -aVO -aVO -ate -aFK -bbI -avp -aCq -baq -atM -bgx -aBx -baq -anj -avo -avz -avM -asX -aLd -aHl -aIi -bgd -aLd -bbT -bcm -aAG -bfR -ayM -ayc -bdZ -ben -bfD -bfQ -aCn -bea -bec -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aPs -beU -bhx -beU -biF -biF -biF -biF -biF -biF -biF -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(108,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -ajG -aaz -aaC -aUv -aUv -aWJ -aVc -aWd -aUv -aUv -bmk -fLx -aSV -bng -bjJ -bjT -bkd -bkc -aRG -aSn -aoD -aXU -asr -aio -ajn -akg -akO -akf -amg -aio -anq -anT -aok -asK -asP -auO -auQ -awR -asP -aHn -aHn -aHn -asP -beL -aru -aru -aKy -beH -bfn -baq -bgp -baE -aLc -axt -avA -aCi -asX -asX -asX -aIh -bdw -bbL -bbU -bdJ -aAG -aIS -ayM -bdV -bea -ayD -bfF -bfS -bea -bea -bec -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aPs -bhv -bhA -bhC -pSu -bhH -beU -aPs -aaq -adG -adG -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(109,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -ajG -aaz -aTp -aUA -aaJ -aaK -abu -aaT -blu -blP -bml -fLx -aTj -bjy -acx -bjU -bke -xZw -acP -aSn -aoF -arM -asE -aio -ajo -akf -akP -akf -aht -aio -anr -anU -aok -asi -asi -asi -asi -asi -asj -aJV -aWE -aWE -beE -beM -amY -ani -anj -bgx -anj -bgx -nXZ -bgx -anj -wju -bsa -aru -bgj -aET -aET -aIo -axZ -bbM -bbV -aAc -aEl -baC -ayM -bdV -beb -beo -bfG -bgl -aFA -bea -bec -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aPs -aPs -qTm -aPs -aPs -beU -bhJ -aPs -adG -adG -aNB -aNM -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(110,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -ajG -aaL -aaR -aaR -aaR -aaR -aaR -aao -aao -aao -aao -aao -aTm -aTm -aTm -aTm -aTm -aTm -aTm -aTm -acf -arx -acf -aio -ajp -akf -akP -akf -ami -aio -aio -anV -aok -aSx -aop -aop -aop -aBp -aCl -aTF -bdC -beC -beK -bcN -bcg -anj -atA -aAL -anj -aGi -bgq -bgr -anj -anj -anj -aru -avJ -aIM -aIM -aIJ -ayf -aIM -bfY -bbY -aIf -aIU -ayM -ayd -ayb -bep -bfE -bgG -aFy -bea -bec -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aPs -vYr -faL -aPs -bhI -bhI -bhK -adG -aOF -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(111,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -ajG -ajG -ajG -ajG -ajG -ajG -aaq -aaq -afS -afp -bfT -afq -afS -ais -ajv -ajV -amS -anP -apj -afS -apa -arO -asF -aio -ajq -akh -akP -alt -amj -amK -ans -anU -aok -aDI -aqp -aop -aqp -aCj -aFS -aVP -aVP -aVP -aFS -beO -aru -aES -aIN -aCf -anj -bgx -nXZ -baq -anj -anj -anj -bcu -asB -aIm -aIm -aIK -azs -bbR -bbS -bbZ -aIf -baT -ayM -bea -beb -bfo -bfK -bfo -aFA -bea -bec -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aPs -aPs -aPs -aPs -bhI -bhI -bhK -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(112,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aNM -bov -bov -aaU -ajG -ajG -ajG -aaq -afS -afr -acn -aeU -afS -ait -ajw -ajW -amV -aoe -apk -afS -apH -arq -asJ -aio -ajr -aki -akQ -alu -amk -amL -ant -anW -aok -aop -aop -aop -aop -aUr -aWM -aXj -aVy -aVy -aop -aKm -avL -atA -aZX -aBD -anj -bgx -rBz -bew -bfp -bfl -baX -amY -asB -aIm -aIm -aIP -azx -aIm -bgC -bgE -aIf -baW -ayM -bea -aHC -bfz -bfz -bfz -aHC -bea -bec -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aPs -bhI -bhI -aPs -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(113,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aaU -ajG -ajG -aaq -afS -aby -acZ -aeW -afS -aby -afq -acl -amX -afq -afq -afS -aql -arq -asW -aio -ajs -akj -akR -alv -aml -amK -anu -anX -aok -aoM -aEX -atR -aEX -asp -asq -aWM -aXj -aVy -aop -aZy -aru -bca -anj -anj -anj -baq -bek -aru -aru -baF -aru -aru -bfX -aEW -bgz -ato -bcp -atN -arJ -aGK -bgR -aGK -aGK -aGK -aGK -aGK -aGK -aGK -bgH -bgH -bgT -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aPs -aPs -aPs -aPs -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(114,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -bou -ajG -ajG -aaq -afS -ait -aeE -afI -ags -agr -agB -anC -ain -amU -akd -arb -aqn -bdf -atj -acf -acf -acf -acf -acf -acf -aio -ajs -anY -aok -bdi -aop -bdj -arQ -auU -aXv -ath -afT -atk -atn -awQ -aru -bgt -bbm -bcf -bgs -bch -sts -aru -bge -bfm -bgA -aJt -aJt -aJt -aJt -aJt -bgQ -aJt -aJt -ayJ -bbW -aAe -aVC -aAj -bei -bfA -aTE -aGK -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaq -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(115,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aaq -abn -ajG -ajG -aaq -afS -ack -aeF -ack -afS -afS -afS -afS -alz -afS -afS -afS -aqU -arq -atm -atK -auy -atK -auM -avh -awJ -acf -aok -aok -aok -aEB -aop -aeZ -arR -aVy -bdl -aFM -aFO -aFM -atb -bbo -atb -aBy -aKt -aoJ -aLe -bdS -aLe -aoJ -bex -bfU -bgI -aJt -awT -axo -bgO -aIQ -aph -azt -aJt -aGx -aTE -aVw -aTE -beg -aTE -bfB -aTE -aGK -aaq -aaq -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aNM -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(116,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -abn -ajG -ajG -aaq -afS -bet -bet -bet -afS -agF -adK -amW -arI -ajY -amZ -afS -aqW -arq -acV -acV -acV -acV -acV -acV -axr -ayK -hfN -atg -aSy -aop -aop -bdk -ask -aVy -aLg -aFM -aJu -aLb -atb -asu -ati -aFz -asu -aoJ -aUq -bdc -bfw -aoJ -beD -bfV -bgh -bgJ -awm -bdt -axy -axy -aHv -bdO -aJt -aGx -aTE -aGK -bdL -aGK -bel -aGK -bfM -aGK -aaq -aaq -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(117,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -abn -ajG -ajG -ajG -afS -bay -afq -afq -afS -ahs -afY -aib -aFZ -ako -and -afS -aqW -arr -asC -asC -asC -asC -asC -avi -axs -arL -aop -aUr -aWM -aWM -aWM -aWM -asH -aXj -bdH -aFM -aFP -aTI -atb -asx -aty -aGt -aKw -aoJ -baI -bfa -bfx -aoJ -bfk -bgi -bcw -aJt -aws -bdu -axY -bdn -aKs -axu -aJt -aQf -aTE -aGK -bef -aGK -bef -aGK -bfN -aGK -adG -aOi -aab -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(118,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aaU -ajG -ajG -afS -afq -afq -afq -afS -ajZ -afZ -aiX -ajC -akW -anl -afS -aqX -arP -atv -atS -acV -acV -auN -avB -awN -azp -aop -aVy -aop -aop -aqq -aBG -asO -aqe -bft -aFM -aGd -aHp -bfb -asI -aum -aJw -asu -aoJ -bbJ -bfr -bdT -beq -bes -bcB -aLF -aJt -awt -bgM -awV -axp -bbQ -axx -aJt -aGK -aGK -aGK -aGK -aGK -aGK -aGK -aGK -aGK -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aaq -aaq -aaq -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(119,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aaq -aac -aaU -ajG -afS -afq -afq -afq -afS -ash -afq -aiZ -ajD -akX -ann -afS -aqZ -arP -acV -arX -aui -acV -auP -avE -arL -avN -aop -aVy -bdj -aop -aqV -aDY -asV -aqe -aLG -aFM -aGg -aXh -atb -asN -awq -aJw -asu -aoJ -bcv -bfs -bgb -aoJ -beZ -bfq -aFM -aJt -aJt -aJt -aJt -aJt -aJt -aJt -aJt -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(120,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aaq -abn -ajG -afS -aby -afq -afq -afS -ajc -ajx -alr -anD -akX -apl -afS -ara -arS -aon -auh -aun -aCa -auT -avI -arL -aqm -aop -aVy -aeZ -ata -aCI -aCR -aEh -aqe -aso -aFM -aJJ -aOg -atb -asY -axv -bcF -bdI -aoJ -beP -bdR -aBJ -aoJ -bbr -bcB -aAb -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -aNB -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(121,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -abn -ajG -afS -afp -afq -bfW -afS -ajd -ajx -alr -anD -akX -apF -acf -aro -arT -acV -arX -auo -acV -auP -avE -arL -aqm -aop -aVy -bdk -aop -aop -aop -ask -arK -bfu -aCh -aKl -aHw -atb -atb -atb -atb -atb -aoJ -aoJ -aoJ -aoJ -aoJ -bbv -bcC -aAb -adG -aOF -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(122,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -abn -ajG -afS -afS -afS -afS -afS -ajc -ajx -alr -anE -aoK -apG -afS -aqW -arX -acV -arX -acV -acV -avb -awu -arL -arZ -aop -asQ -auk -aEZ -auk -auk -avr -aso -aop -aFM -aGq -aHx -aLC -aLH -aLK -aPF -aSh -bcG -aTJ -aUB -aVd -baS -bbB -bcD -aAb -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(123,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -ajG -adG -adG -adG -ajG -afS -aje -ajF -alM -anM -aoO -apP -afS -arp -arX -atx -auj -acV -acV -avc -awN -acf -aCo -aAD -asG -aAD -ayg -aAR -aFa -aEx -aBd -aAR -aFM -aGG -aHA -aLD -aLI -aMg -aRm -aSl -aSl -aTS -aUT -aLI -baY -bbr -bcE -aAb -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(124,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aNM -aNM -aNM -aNW -ajG -afS -afS -afS -afS -afS -aoP -afS -afS -aqZ -acV -acV -acV -acV -acV -ave -arL -adG -azY -axQ -aAQ -aBC -ayg -aCW -aEn -aEM -aFD -aFR -aFM -aGI -aIj -aLE -aLE -aLE -aLE -aTc -aLE -aUg -aLE -aLE -aLE -bce -bfv -aAb -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(125,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -ajG -ajG -ajG -ajU -amu -amu -apd -ajG -arL -ars -arY -atz -aup -auK -auL -avf -arL -adG -azY -aAH -aBm -aBM -ayg -aCX -aEm -aEF -aFg -aGa -aFM -aFM -aIT -aHq -aHq -aHq -aRX -aTw -aTH -aUn -aHq -aHq -aHq -bgw -aAa -aAa -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(126,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aNM -aNM -aNW -amt -anO -aoR -atd -ajG -auR -aAh -aAh -aAh -aAh -aAh -aAh -aAh -axm -adG -azY -aAI -aBz -aBZ -aCp -aDC -aEm -aFb -aFE -aGc -aGj -aFM -aXS -aLF -aLJ -aMh -aJq -aTG -bcq -aMh -aJq -aWl -bcL -aMh -bfL -adG -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(127,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -ajG -ajG -ajG -avk -ajG -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -azY -aAJ -aBA -aCg -aCp -aDM -aEm -aFk -aFG -aEm -aHo -aFM -aFM -aAa -azX -azX -azX -azX -azX -azX -azX -azX -azX -azX -aAa -adG -aOF -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(128,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aOt -adG -azY -aAK -aBA -aCk -aCp -aDX -aEm -aEN -aFB -aFH -aIk -aKp -aXi -azY -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(129,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -azY -aAP -aBl -aCC -aCp -aAK -aEm -aEm -aEm -aEm -aGJ -aGJ -aXV -azY -adG -aOF -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(130,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -aAC -aAR -aAR -aAR -ayg -aEk -aEL -aFl -aFl -aGe -aGe -aGe -aYN -azY -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(131,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aOm -adG -adG -adG -adG -adG -aAC -aAR -aAR -aAR -aAR -aAR -aAR -aAR -aAR -ayg -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(132,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aNM -aNM -aNM -aNW -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -aOi -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(133,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aNM -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(134,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(135,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(136,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(137,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(138,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(139,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -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 -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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/unsimulated/wall/planetary/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aab" = ( +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aac" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aad" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"aae" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/iaa) +"aaf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/iaa) +"aag" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"aah" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/triage) +"aai" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/breakroom) +"aaj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 22; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"aak" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"aal" = ( +/obj/machinery/vending/cola{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/camera/network/security{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"aam" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"aan" = ( +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/security, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"aao" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/storage) +"aap" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aaq" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aar" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"aas" = ( +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/medical/lite, +/obj/random/maintenance/medical, +/obj/random/toy, +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) +"aat" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"aau" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"aav" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/cups, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"aaw" = ( +/obj/structure/reagent_dispensers/water_cooler/full{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"aax" = ( +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"aay" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"aaz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/storage) +"aaA" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "MedbayTriage"; + name = "Medbay Airlock"; + req_one_access = list(5) + }, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aaB" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/vending/medical{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aaC" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aaD" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aaE" = ( +/turf/simulated/wall, +/area/maintenance/lower/medsec_maintenance) +"aaF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) +"aaG" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Break Room"; + req_one_access = list(1,38) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"aaH" = ( +/obj/structure/catwalk, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aaI" = ( +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/atmospherics/portables_connector, +/obj/item/weapon/tool/wrench, +/obj/machinery/door/window/brigdoor/southright{ + req_access = list(); + req_one_access = list(5) + }, +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aaJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aaK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aaL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/storage) +"aaM" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/tether/surfacebase/security/upperhall) +"aaN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aaO" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aaP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/security, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aaQ" = ( +/turf/simulated/open, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"aaR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/storage) +"aaS" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aaT" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aaU" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aaV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aaW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aaX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"aaY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aaZ" = ( +/obj/structure/table/standard, +/obj/item/device/defib_kit/loaded, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aba" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/open, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"abb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/table/standard, +/obj/random/tetheraid, +/obj/random/tetheraid, +/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"abc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"abd" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"abe" = ( +/obj/structure/closet, +/obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla, +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) +"abf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"abg" = ( +/obj/machinery/door/blast/shutters{ + id = "hangarsurface"; + name = "Engine Repair Bay" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"abh" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/medical_stand, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/structure/medical_stand, +/obj/structure/medical_stand, +/obj/structure/medical_stand, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"abi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"abj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"abk" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/maintenance/lower/medsec_maintenance) +"abl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/wood, +/area/maintenance/lower/medsec_maintenance) +"abm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/junk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/rum{ + desc = "TASTE DEMOCRACY"; + name = "Managed Democra-cider" + }, +/obj/random/contraband, +/obj/random/cigarettes, +/turf/simulated/floor/wood, +/area/maintenance/lower/medsec_maintenance) +"abn" = ( +/obj/structure/railing, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"abo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"abp" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"abq" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"abr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"abs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"abt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"abu" = ( +/obj/machinery/light_switch{ + dir = 8; + on = 0; + pixel_x = 24; + pixel_y = -22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"abv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"abw" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"abx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aby" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"abz" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/structure/cable/green{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/turf/simulated/open, +/area/tether/surfacebase/surface_three_hall) +"abA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"abB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing, +/obj/structure/grille, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"abC" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"abE" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"abF" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abI" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abK" = ( +/obj/machinery/computer/security, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"abL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abP" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/random/junk, +/turf/simulated/floor/wood, +/area/maintenance/lower/medsec_maintenance) +"abQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/maintenance/lower/medsec_maintenance) +"abR" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) +"abS" = ( +/obj/structure/table/steel, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + desc = "Taste liberty"; + name = "Cup of Liber-tea" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) +"abT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"abU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"abX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/breakroom) +"abY" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"abZ" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aca" = ( +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"acb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/triage) +"acc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"acd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"ace" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"acf" = ( +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology/xenoflora) +"acg" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/medical/chemistry) +"ach" = ( +/obj/machinery/vending/wallmed1{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aci" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2"; + req_access = list(45) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"acj" = ( +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_hallway) +"ack" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"acl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"acm" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"acn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aco" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"acp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"acq" = ( +/obj/machinery/vending/security{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"acr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"acs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = 25 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"act" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"acu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"acv" = ( +/obj/structure/table/rack, +/obj/random/tetheraid, +/obj/random/maintenance/medical, +/turf/simulated/floor/wood, +/area/maintenance/lower/medsec_maintenance) +"acw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) +"acx" = ( +/obj/structure/table/glass, +/obj/item/device/radio{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"acy" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/surgery2) +"acz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"acA" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Internal Affairs" + }, +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"acB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"acC" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/multi, +/obj/random/tetheraid, +/obj/item/weapon/storage/firstaid/regular, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"acD" = ( +/obj/structure/table/steel, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/packageWrap, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -30 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"acE" = ( +/obj/machinery/computer/secure_data, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"acF" = ( +/obj/structure/closet/secure_closet/hos2, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"acG" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder/red, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"acH" = ( +/obj/structure/table/steel, +/obj/machinery/photocopier/faxmachine{ + department = "Security" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"acI" = ( +/obj/machinery/papershredder, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"acJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"acK" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/command_guide, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"acL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"acM" = ( +/obj/structure/railing, +/obj/machinery/light, +/turf/simulated/open, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"acN" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"acO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"acP" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"acQ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"acR" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"acS" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = -30 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer{ + name = "Scan Records" + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"acT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"acU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"acV" = ( +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"acW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"acX" = ( +/obj/machinery/photocopier, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"acY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"acZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ada" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/vitals_monitor, +/obj/machinery/vitals_monitor, +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"adb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"adc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"add" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"ade" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"adf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"adg" = ( +/obj/structure/table/steel, +/obj/item/device/camera, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/device/retail_scanner/security, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"adh" = ( +/obj/machinery/papershredder, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"adi" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "BrigFoyer"; + layer = 2.8; + name = "Security"; + req_one_access = list(38,63) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"adj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"adk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + id = "iaal"; + pixel_x = 25; + pixel_y = 7 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"adl" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"adm" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"adn" = ( +/obj/machinery/door/airlock/glass_security, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"ado" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"adp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"adq" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/breakroom) +"adr" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"ads" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"adt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"adu" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"adv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"adw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/obj/machinery/vending/medical{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"adx" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"ady" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"adz" = ( +/obj/structure/table/glass, +/obj/item/weapon/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/backup_implanter{ + pixel_y = -12 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -5 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 2 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 9 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"adA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/button/windowtint/multitint{ + id = "medbayfoyer"; + pixel_x = -8; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"adB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"adC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"adD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"adE" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"adF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"adG" = ( +/obj/structure/catwalk, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"adH" = ( +/obj/effect/floor_decal/corner_oldtile/green/full{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"adI" = ( +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 5 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"adJ" = ( +/obj/effect/floor_decal/corner_oldtile/green/full{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"adK" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"adL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"adM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"adN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"adO" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/briefingroom) +"adP" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"adQ" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"adR" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/upperhall) +"adS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"adT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"adU" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/evidence, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"adV" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/item/bodybag/cryobag{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/weapon/storage/toolbox/emergency{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/weapon/storage/box/lights/mixed{ + pixel_y = 4 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"adW" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/processing) +"adX" = ( +/obj/machinery/camera/network/security, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"adY" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder/red, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"adZ" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) +"aea" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"aeb" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"aec" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"aed" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aee" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 5; + pixel_y = -25 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -10; + pixel_y = -30 + }, +/obj/machinery/camera/network/medbay{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"aef" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aeg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aeh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/standard, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/weapon/storage/box/syringes{ + pixel_y = 9 + }, +/obj/item/weapon/storage/box/syringes{ + pixel_y = 9 + }, +/obj/random/medical, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 14; + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aei" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aej" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aek" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"ael" = ( +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aem" = ( +/obj/structure/railing, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aen" = ( +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 6 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aeo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aep" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aeq" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera/network/security, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"aer" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"aes" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aet" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/closet/walllocker_double{ + dir = 4; + pixel_x = 28 + }, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/random/drinkbottle, +/obj/item/device/camera_film, +/obj/item/device/tape/random, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"aeu" = ( +/obj/machinery/atmospherics/pipe/zpipe/up, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "16-0" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aev" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"aew" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"aex" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"aey" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security/polarized{ + id_tint = "sec_processing"; + name = "Security Processing"; + req_access = list(63) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/security/processing) +"aez" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aeA" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + id_tag = null; + name = "Medbay Airlock"; + req_access = list(5); + req_one_access = list(5) + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aeB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aeC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"aeD" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"aeE" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aeF" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 4; + req_access = list(77); + req_one_access = newlist() + }, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + req_access = list(77); + req_one_access = newlist() + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aeG" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/lobby) +"aeH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aeI" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aeJ" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/lobby) +"aeK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aeL" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aeM" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aeN" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aeO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aeP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Medical Storage"; + sortType = "Medical Storage" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aeQ" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aeR" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/masks, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aeS" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/healthanalyzer, +/obj/machinery/alarm{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"aeT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aeU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aeV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/triage) +"aeW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aeX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aeY" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aeZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"afa" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"afb" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"afc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/iaa/officecommon) +"afd" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"afe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aff" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"afg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"afh" = ( +/turf/simulated/wall/r_wall, +/area/rnd/research_storage) +"afi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"afj" = ( +/turf/simulated/wall, +/area/crew_quarters/recreation_area_restroom) +"afk" = ( +/obj/structure/cable{ + icon_state = "32-4" + }, +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/down{ + dir = 4 + }, +/turf/simulated/open, +/area/tether/surfacebase/surface_three_hall) +"afl" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"afm" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"afn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = 26 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"afo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"afp" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"afq" = ( +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"afr" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"afs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aft" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"afu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"afv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"afw" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"afx" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2"; + req_access = list(45) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"afy" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "surfsurgery2" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/surgery1) +"afz" = ( +/obj/structure/bed/chair/office/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"afA" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 6; + pixel_y = -22 + }, +/obj/machinery/button/windowtint{ + id = "surfsurgery2"; + pixel_x = -3; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"afB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"afC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"afD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/triage) +"afE" = ( +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"afF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + dir = 1; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + pixel_x = -10; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"afG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/triage) +"afH" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"afI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"afJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"afK" = ( +/turf/simulated/wall, +/area/rnd/staircase/thirdfloor) +"afL" = ( +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"afM" = ( +/turf/simulated/wall, +/area/rnd/research_storage) +"afN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"afO" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"afP" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"afQ" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"afR" = ( +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"afS" = ( +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology/xenoflora_storage) +"afT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"afU" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"afV" = ( +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"afW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/tech_supply, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"afX" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"afY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"afZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aga" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"agb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"agc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"agd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"age" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Internal Affairs" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"agf" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"agg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"agh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"agi" = ( +/obj/structure/filingcabinet/medical{ + desc = "A large cabinet with hard copy medical records."; + name = "Medical Records" + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"agj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"agk" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"agl" = ( +/obj/machinery/door/window/southleft{ + req_access = list(5) + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"agm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"agn" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"ago" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"agp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"agq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"agr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ags" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoflora Research"; + req_one_access = list(77) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"agt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/green/full, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"agu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"agv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"agw" = ( +/turf/simulated/wall, +/area/tether/surfacebase/surface_three_hall) +"agx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"agy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/steel, +/obj/item/weapon/storage/bag/circuits/basic, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"agz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"agA" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"agB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"agC" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "32-1" + }, +/obj/structure/disposalpipe/down, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/rnd/research_storage) +"agD" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"agE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"agF" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"agG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/computer/secure_data{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"agH" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"agI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/briefingroom) +"agJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/lattice, +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/turf/simulated/open, +/area/maintenance/lower/medsec_maintenance) +"agK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"agL" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/obj/structure/closet, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"agM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"agN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"agO" = ( +/obj/machinery/photocopier, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"agP" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/recharger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"agQ" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/hos) +"agR" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"agS" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"agT" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"agU" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"agV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"agW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"agX" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"agY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"agZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aha" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ahb" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Medical Storage"; + sortType = "Medical Storage" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"ahc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ahd" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_three_hall) +"ahe" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ahf" = ( +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ahg" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"ahh" = ( +/turf/simulated/wall, +/area/rnd/workshop) +"ahi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ahj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/rnd/workshop) +"ahk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"ahl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ahm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"ahn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aho" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"ahp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/workshop) +"ahq" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"ahr" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"ahs" = ( +/obj/machinery/atmospherics/unary/heater{ + icon_state = "heater" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aht" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ahu" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahv" = ( +/obj/machinery/door/airlock/security{ + name = "Internal Affairs"; + req_access = list(38); + req_one_access = newlist() + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"ahw" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "BrigFoyer"; + layer = 2.8; + name = "Security"; + req_one_access = list(38,63) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahx" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahz" = ( +/obj/structure/window/reinforced, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"ahA" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ahC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahD" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/junk, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/junk, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"ahE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"ahF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/security/lobby) +"ahH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/security/lobby) +"ahI" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ahL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ahM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ahN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ahO" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/random/medical{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"ahP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"ahQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"ahR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ahS" = ( +/obj/structure/grille, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_three_hall) +"ahT" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"ahU" = ( +/obj/machinery/media/jukebox, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"ahV" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/remote/airlock{ + id = "BrigFoyer"; + name = "Brig Foyer"; + pixel_x = -6; + req_access = list(1) + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/weapon/paper_bin{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ahX" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ahY" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ahZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aia" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aib" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aic" = ( +/obj/random/trash_pile, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"aid" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"aie" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aif" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 32 + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aig" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aih" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aii" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tether/surfacebase/medical/lobby) +"aij" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall, +/area/tether/surfacebase/medical/lobby) +"aik" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"ail" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aim" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"ain" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aio" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/panic_shelter) +"aip" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/surface_three_hall) +"aiq" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) +"air" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ais" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ait" = ( +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aiu" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"aiv" = ( +/obj/random/junk, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"aiw" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_circuit_printer, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"aix" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aiy" = ( +/obj/structure/table/steel, +/obj/item/device/electronic_assembly/large/default, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"aiz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aiA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/vending/assist{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aiB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/full, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aiC" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aiD" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aiE" = ( +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aiF" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) +"aiG" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aiH" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/recreation_area_restroom) +"aiI" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aiJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aiK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"aiL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/camera/network/security{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aiM" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/security/lobby) +"aiN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aiO" = ( +/obj/machinery/door_timer/cell_3{ + id = "Cell A"; + name = "Cell A"; + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aiP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aiQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aiR" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aiS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aiT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aiU" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/security/lobby) +"aiV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aiW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/lobby) +"aiX" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aiY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"aiZ" = ( +/obj/machinery/door/window/brigdoor/southright{ + req_access = list(77); + req_one_access = newlist() + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aja" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_x = -4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ajb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ajc" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajd" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aje" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajf" = ( +/obj/structure/window/reinforced, +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"ajg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"ajh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aji" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ajj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ajk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"ajl" = ( +/obj/structure/bed/padded, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ajm" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ajn" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ajo" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 29 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ajp" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ajq" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ajr" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ajs" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ajt" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aju" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"ajv" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajw" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajx" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"ajz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 1; + id = "Cell B"; + name = "Cell B"; + req_access = list(2) + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/tether/surfacebase/security/upperhall) +"ajA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ajB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"ajC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"ajF" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajG" = ( +/obj/structure/catwalk, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"ajH" = ( +/obj/machinery/computer/secure_data, +/obj/structure/fireaxecabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ajI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/table/steel, +/obj/effect/floor_decal/rust, +/obj/item/device/gps/science, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"ajJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 1; + id = "Cell A"; + name = "Cell A"; + req_access = list(2) + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/tether/surfacebase/security/upperhall) +"ajK" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"ajL" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Security Lobby" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tether/surfacebase/security/lobby) +"ajM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ajN" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"ajO" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tether/surfacebase/security/lobby) +"ajP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"ajQ" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"ajR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ajS" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/lobby) +"ajT" = ( +/obj/structure/sign/directions/evac, +/turf/simulated/wall, +/area/tether/surfacebase/security/lobby) +"ajU" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"ajV" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajW" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajX" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ajY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ajZ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aka" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"akb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"akc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ake" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"akf" = ( +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"akg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"akh" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"aki" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"akj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"akk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"akl" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/surface_three_hall) +"akm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"akn" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ako" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Port to Isolation" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"akp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aks" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/computer/timeclock/premade/west, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akt" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 5 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"aku" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akv" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"akx" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aky" = ( +/obj/structure/table, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/random/action_figure, +/obj/random/cigarettes, +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) +"akz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"akA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/chemistry) +"akB" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/beakers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"akC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akF" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/medical/chemistry) +"akG" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akK" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Xenobotany"; + sortType = "Xenobotany" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"akM" = ( +/obj/machinery/door/window/southleft{ + name = "Library Desk Door"; + req_access = list(37) + }, +/obj/machinery/light_switch{ + dir = 4; + on = 0; + pixel_x = -24 + }, +/turf/simulated/floor/carpet, +/area/library) +"akN" = ( +/obj/structure/closet, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"akO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"akP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"akQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"akR" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = -2 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"akS" = ( +/turf/simulated/wall, +/area/crew_quarters/pool) +"akT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/pool) +"akU" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Pool" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/crew_quarters/pool) +"akV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/crew_quarters/pool) +"akW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"akX" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"akY" = ( +/turf/simulated/wall, +/area/crew_quarters/recreation_area) +"akZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/recreation_area) +"ala" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"alb" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"alc" = ( +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_three) +"ald" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"ale" = ( +/obj/structure/sign/directions/engineering{ + dir = 10; + pixel_y = -10 + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_three) +"alf" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -4 + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_three) +"alg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"alh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ali" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"alj" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/captain) +"alk" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"all" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/item/weapon/soap/deluxe, +/obj/structure/curtain/open/shower, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"alm" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/suit_cycler/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aln" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/northleft{ + dir = 4; + icon_state = "right"; + name = "Reception Window" + }, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 8; + name = "Head of Personnel's Desk"; + req_access = list(57) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "hop_office_desk"; + layer = 3.1; + name = "HoP's Shutters" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"alo" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/surface_three_hall) +"alp" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/surface_three_hall) +"alq" = ( +/turf/simulated/floor/wood, +/area/tether/surfacebase/surface_three_hall) +"alr" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"als" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"alt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"alu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"alv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"alw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/pool) +"alx" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aly" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoflora Research"; + req_one_access = list(77) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/xenoflora_storage) +"alA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/closet{ + name = "Clothing Storage" + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alD" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alE" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alF" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alG" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_hallway) +"alI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"alJ" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"alK" = ( +/obj/structure/closet/athletic_mixed, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"alL" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"alM" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"alN" = ( +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"alO" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/clothing/shoes/boots/jackboots{ + desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom"; + name = "Dhaeleena's Jackboots" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"alP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"alQ" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"alR" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"alS" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"alT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"alU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"alV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/north_stairs_three) +"alW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"alX" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/tether/surfacebase/surface_three_hall) +"alY" = ( +/turf/simulated/open, +/area/tether/surfacebase/surface_three_hall) +"alZ" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/tether/surfacebase/surface_three_hall) +"ama" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"amb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"amc" = ( +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/surface_three_hall) +"amd" = ( +/obj/structure/table/glass, +/obj/item/weapon/material/ashtray/plastic, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/surface_three_hall) +"ame" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"amf" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"amg" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"amh" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/research) +"ami" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/techfloor, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"amj" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole/right, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"amk" = ( +/obj/effect/floor_decal/techfloor/corner, +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"aml" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/hole, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"amm" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"amn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"amo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"amp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"amq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"amr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"ams" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"amt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"amu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"amv" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"amw" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"amx" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"amy" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/north_stairs_three) +"amz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/north_stairs_three) +"amA" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"amB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"amC" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"amD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"amE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"amF" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Atrium Third Floor" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/north_stairs_three) +"amG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"amH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"amI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"amJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/int{ + name = "Fire/Phoron Shelter" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"amK" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/crew_quarters/panic_shelter) +"amL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch{ + name = "Fire/Phoron Shelter Secure Hatch"; + req_one_access = list() + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/panic_shelter) +"amM" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"amN" = ( +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"amO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/deep/pool, +/area/crew_quarters/pool) +"amP" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep/pool, +/area/crew_quarters/pool) +"amQ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/crew_quarters/pool) +"amR" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/pool, +/area/crew_quarters/pool) +"amS" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"amT" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"amU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"amV" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"amW" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"amX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"amY" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/smartfridge{ + req_access = list(28) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"amZ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ana" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/glasses/threedglasses, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"anb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/recreation_area) +"anc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Secondary Janitorial Closet"; + req_access = list(26) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/north_stairs_three) +"and" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"ane" = ( +/turf/simulated/open, +/area/tether/surfacebase/north_stairs_three) +"anf" = ( +/obj/structure/sign/directions/evac{ + dir = 8 + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_three) +"ang" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"anh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ani" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"anj" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"ank" = ( +/obj/machinery/door/airlock/maintenance/int{ + name = "Fire/Phoron Shelter" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/panic_shelter) +"anl" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"anm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ann" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"ano" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anp" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anq" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ans" = ( +/obj/machinery/computer/area_atmos{ + range = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ant" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"anw" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/deep/pool, +/area/crew_quarters/pool) +"anx" = ( +/turf/simulated/floor/water/deep/pool, +/area/crew_quarters/pool) +"any" = ( +/turf/simulated/floor/water/pool, +/area/crew_quarters/pool) +"anz" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/crew_quarters/pool) +"anA" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"anB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"anC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"anD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"anE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"anF" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/coin/silver, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/recharger, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"anG" = ( +/obj/structure/flora/tree/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/north_stairs_three) +"anH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"anI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"anJ" = ( +/obj/structure/sign/directions/evac, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_three) +"anK" = ( +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"anL" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"anM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"anN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"anO" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"anP" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"anQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/int{ + name = "Fire/Phoron Shelter" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/panic_shelter) +"anR" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anS" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anT" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole/right, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anU" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right, +/obj/effect/floor_decal/techfloor/hole, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anV" = ( +/obj/machinery/door/airlock/hatch{ + name = "Fire/Phoron Shelter Secure Hatch"; + req_one_access = list() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/panic_shelter) +"anW" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anX" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anY" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"anZ" = ( +/obj/structure/table/glass, +/obj/item/weapon/inflatable_duck, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aoa" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"aob" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aoc" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aod" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aoe" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aof" = ( +/obj/structure/bed/padded, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/vending/wallmed1/public{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"aog" = ( +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"aoh" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"aoi" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoj" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aok" = ( +/turf/simulated/wall/r_wall, +/area/hydroponics) +"aol" = ( +/turf/simulated/wall/r_wall, +/area/vacant/vacant_shop) +"aom" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/int{ + name = "Fire/Phoron Shelter" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/vacant/vacant_shop) +"aon" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aoo" = ( +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aop" = ( +/turf/simulated/floor/grass, +/area/hydroponics) +"aoq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; + icon_state = "frame"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aor" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/item/weapon/beach_ball, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aos" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aot" = ( +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"aou" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/vending/snack{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aov" = ( +/obj/machinery/scale, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aow" = ( +/obj/machinery/scale, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aox" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aoy" = ( +/obj/structure/sign/department/xenolab, +/turf/simulated/wall, +/area/rnd/staircase/thirdfloor) +"aoz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoA" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"aoB" = ( +/obj/machinery/light/small, +/obj/structure/mopbucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_three) +"aoC" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoD" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoE" = ( +/obj/structure/sign/directions/evac{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/vacant/vacant_shop) +"aoF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aoI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoJ" = ( +/turf/simulated/wall, +/area/crew_quarters/freezer) +"aoK" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Isolation to Waste" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aoL" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aoM" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aoN" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/surface_three_hall) +"aoO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aoP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/rnd/xenobiology/xenoflora_storage) +"aoQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aoR" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aoS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aoT" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aoU" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aoV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Recreation Area" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/recreation_area) +"aoW" = ( +/obj/machinery/alarm{ + pixel_y = 20 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aoX" = ( +/turf/simulated/wall, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"aoY" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apa" = ( +/obj/structure/closet/secure_closet/hydroponics/sci{ + req_access = list(77) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"apb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apc" = ( +/turf/simulated/wall, +/area/vacant/vacant_shop) +"apd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"ape" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apf" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apg" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/drinkbottle, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/random/tool, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aph" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"api" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/button/remote/blast_door{ + id = "kitchen2"; + name = "Kitchen shutters"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"apj" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"apk" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"apl" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"apm" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"apn" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"apo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"app" = ( +/obj/machinery/atm{ + pixel_y = 31 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apu" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apv" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"apw" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"apx" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"apy" = ( +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"apz" = ( +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"apA" = ( +/obj/structure/table/steel, +/obj/fiftyspawner/steel, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"apB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apC" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apD" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Library"; + sortType = "Library" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apF" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"apG" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"apH" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"apI" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"apJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"apK" = ( +/obj/structure/sign/department/robo{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"apL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"apM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"apN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Pool" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/pool) +"apO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apP" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"apQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apS" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"apV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"apW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"apX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/computer/timeclock/premade/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqa" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"aqd" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqe" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/hydroponics) +"aqf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqg" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_three_hall) +"aqh" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_three_hall) +"aqi" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/vacant/vacant_shop) +"aqj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aqk" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/random/junk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aql" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aqm" = ( +/obj/machinery/beehive, +/turf/simulated/floor/grass, +/area/hydroponics) +"aqn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aqo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aqp" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/grass, +/area/hydroponics) +"aqq" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/hydroponics) +"aqr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aqs" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/deep/pool, +/area/crew_quarters/pool) +"aqt" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep/pool, +/area/crew_quarters/pool) +"aqu" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/pool, +/area/crew_quarters/pool) +"aqv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/pool, +/area/crew_quarters/pool) +"aqw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + frequency = 1392; + icon_state = "door_locked"; + id_tag = "xenobiology_north_airlock_inner"; + locked = 1; + name = "Xenobiology North Airlock" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1392; + master_tag = "xenobiology_north_airlock_control"; + name = "Xenobiology Access Control"; + pixel_y = 24; + req_one_access = list(47,55) + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aqx" = ( +/obj/machinery/alarm{ + pixel_y = 20 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aqy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/requests_console/preset/research{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"aqz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/research{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aqA" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aqB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqC" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aqD" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"aqE" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqF" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aqG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"aqK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"aqL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"aqM" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"aqN" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/engineering, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"aqO" = ( +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"aqP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"aqQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqS" = ( +/turf/simulated/wall, +/area/rnd/robotics) +"aqT" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -4 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = -10 + }, +/turf/simulated/wall, +/area/tether/surfacebase/surface_three_hall) +"aqU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aqV" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/hydroponics) +"aqW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aqX" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aqY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aqZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"ara" = ( +/obj/machinery/camera/network/research, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"arb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoflora Research"; + req_one_access = list(77) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"arc" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"ard" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"are" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"arf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"arg" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"arh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"ari" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"arj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + frequency = 1392; + icon_state = "door_locked"; + id_tag = "xenobiology_north_airlock_outer"; + locked = 1; + name = "Xenobiology North Airlock" + }, +/obj/machinery/access_button/airlock_interior{ + command = "cycle_exterior"; + frequency = 1392; + master_tag = "xenobiology_north_airlock_control"; + name = "Xenobiology Access Control"; + pixel_y = 24; + req_one_access = list(47,55) + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"ark" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"arl" = ( +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"arm" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"arn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aro" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"arp" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"arq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"arr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"ars" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"art" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aru" = ( +/turf/simulated/wall, +/area/crew_quarters/kitchen) +"arv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"arw" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"arx" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoflora Research"; + req_one_access = list(77) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"ary" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"arz" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"arA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"arB" = ( +/obj/structure/closet/lasertag/red, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"arC" = ( +/obj/structure/closet/lasertag/blue, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"arD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"arE" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/surface_three_hall) +"arF" = ( +/obj/machinery/vending/fitness, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/surface_three_hall) +"arG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"arH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"arI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"arJ" = ( +/turf/simulated/wall, +/area/crew_quarters/bar) +"arK" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"arL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"arM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"arN" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/hydroponics) +"arO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"arP" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"arQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"arR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/grass, +/area/hydroponics) +"arS" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"arT" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"arU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/pool) +"arV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/pool) +"arW" = ( +/turf/simulated/wall, +/area/tether/surfacebase/public_garden_three) +"arX" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"arY" = ( +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"arZ" = ( +/mob/living/simple_mob/vore/rabbit/brown/george, +/turf/simulated/floor/grass, +/area/hydroponics) +"asa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/robotics) +"asb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"asc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"asd" = ( +/obj/structure/sign/biohazard{ + pixel_y = 32 + }, +/obj/structure/flora/pottedplant/crystal, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"ase" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"asf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"asg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"ash" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"asi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hydroponics) +"asj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/sign/botany, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hydroponics) +"ask" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"asl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access = list(29,47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"asm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"asn" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aso" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"asp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"asq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"asr" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ass" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ast" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"asu" = ( +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"asv" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"asw" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"asx" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"asy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"asz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"asA" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"asB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"asC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"asD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/machinery/door/blast/shutters{ + id = "kitchen2"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"asE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"asF" = ( +/obj/structure/closet/secure_closet/hydroponics/sci{ + req_access = list(77) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"asG" = ( +/obj/machinery/door/airlock/glass{ + name = "Hydroponics Break Room"; + req_one_access = list(35,28) + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"asH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"asI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"asJ" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"asK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"asL" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"asM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"asN" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"asO" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"asP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"asQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"asR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"asS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"asT" = ( +/turf/simulated/wall/r_wall, +/area/bridge) +"asU" = ( +/obj/machinery/door/airlock/maintenance/int{ + name = "Fire/Phoron Shelter" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hydroponics) +"asV" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"asW" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"asX" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"asY" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"asZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/grass, +/area/hydroponics) +"ata" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/grass, +/area/hydroponics) +"atb" = ( +/turf/simulated/wall, +/area/hydroponics/cafegarden) +"atc" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"atd" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"ate" = ( +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"atf" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"atg" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"ath" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/vending/hydronutrients{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"ati" = ( +/obj/structure/flora/ausbushes/pointybush, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"atj" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"atk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/biogenerator, +/turf/simulated/floor/grass, +/area/hydroponics) +"atl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/kitchen) +"atm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"atn" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/smartfridge/drying_rack{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"ato" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"atp" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"atq" = ( +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"atr" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"ats" = ( +/turf/simulated/wall, +/area/hallway/lower/third_south) +"att" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"atu" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/photo_album{ + pixel_y = -10 + }, +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"atv" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"atw" = ( +/obj/machinery/camera/network/outside{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"atx" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aty" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"atz" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/storage/box/botanydisk, +/obj/item/weapon/storage/box/botanydisk, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"atA" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"atB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"atC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"atD" = ( +/obj/structure/table/steel, +/obj/fiftyspawner/steel, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"atE" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/rnd/research_storage) +"atF" = ( +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"atG" = ( +/turf/simulated/wall/r_wall, +/area/hallway/lower/third_south) +"atH" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" + }, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/lower/third_south) +"atI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"atJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"atK" = ( +/obj/machinery/botany/editor, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"atL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"atM" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"atN" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"atO" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"atP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"atQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"atR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"atS" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/mauve/full, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"atT" = ( +/turf/simulated/wall/r_wall, +/area/rnd/research) +"atU" = ( +/turf/simulated/wall, +/area/rnd/research) +"atV" = ( +/obj/structure/table/steel, +/obj/item/device/electronic_assembly/large/default, +/obj/machinery/light, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"atW" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_circuit_printer, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"atX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"atY" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"atZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aua" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"aub" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 2; + pixel_y = -28 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"auc" = ( +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aud" = ( +/turf/simulated/shuttle/wall/voidcraft/green{ + hard_corner = 1 + }, +/area/tether/elevator) +"aue" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/hallway/lower/third_south) +"auf" = ( +/obj/structure/grille, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/lower/third_south) +"aug" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"auh" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aui" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auj" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass, +/area/hydroponics) +"aul" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aum" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"aun" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aup" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + name = "Circuitry Workshop"; + req_access = list(7); + req_one_access = list(7) + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"aur" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/research) +"aus" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"aut" = ( +/obj/structure/cable, +/obj/structure/cable/orange{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Surface Civilian"; + output_attempt = 0 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"auu" = ( +/turf/simulated/open, +/area/rnd/staircase/thirdfloor) +"auv" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"auw" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"aux" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/tether/elevator) +"auy" = ( +/obj/machinery/botany/extractor, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auz" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/wardrobe/science_white, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"auA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"auB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"auC" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"auD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"auE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"auF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"auG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"auH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/tether/surfacebase/surface_three_hall) +"auI" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/tether/surfacebase/surface_three_hall) +"auJ" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/tether/surfacebase/surface_three_hall) +"auK" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auM" = ( +/obj/machinery/botany/extractor, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auN" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auO" = ( +/obj/structure/bed/chair/wood, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"auP" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/start{ + name = "Xenobotanist" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auQ" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"auR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"auS" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Look's like it's set to the info station... I wonder what else is on?"; + icon_state = "frame"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"auT" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/xenoflora/full, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"auU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass, +/area/hydroponics) +"auV" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/rnd/staircase/thirdfloor) +"auW" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"auX" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"auY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/research) +"auZ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"ava" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"avb" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/mauve/bordercorner, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"avc" = ( +/obj/machinery/seed_storage/xenobotany{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"avd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/kitchen) +"ave" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"avf" = ( +/obj/machinery/biogenerator, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"avg" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Damn, looks like it's on the clown world channel. I wonder what else is on?"; + icon_state = "frame"; + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/grass, +/area/hydroponics) +"avh" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/camera/network/research{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"avi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/mauve/bordercorner, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"avj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"avk" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8; + name = "Xenoflora Waste Buffer"; + start_pressure = 0 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"avl" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -26 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"avm" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"avn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"avo" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"avp" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/crew_quarters/kitchen) +"avq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"avr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/grass, +/area/hydroponics) +"avs" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"avt" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"avu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"avv" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"avw" = ( +/obj/machinery/computer/rdconsole/core, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"avx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"avy" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/wall, +/area/crew_quarters/kitchen) +"avz" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"avA" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/corner/beige{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"avB" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"avC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"avD" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/button/remote/blast_door{ + id = "kitchen"; + name = "Kitchen shutters"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"avE" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"avF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"avG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"avH" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"avI" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"avJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 8; + name = "Bar"; + req_access = list(25) + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"avK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"avL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_one_access = list(35,28) + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/kitchen) +"avM" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"avN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/honey_extractor, +/turf/simulated/floor/grass, +/area/hydroponics) +"avO" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"avP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"avQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"avR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"avS" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"avT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"avU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"avV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"avW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"avX" = ( +/obj/machinery/door/firedoor, +/obj/item/weapon/folder/white, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + name = "Research Desk"; + req_access = list(7); + req_one_access = list(47) + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"avY" = ( +/obj/structure/sign/deck/third, +/turf/simulated/shuttle/wall/voidcraft/green{ + hard_corner = 1 + }, +/area/tether/elevator) +"avZ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"awa" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"awb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"awc" = ( +/obj/machinery/camera/network/security{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"awd" = ( +/obj/machinery/librarycomp, +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/library) +"awe" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"awf" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"awg" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"awh" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"awi" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awl" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awm" = ( +/obj/machinery/button/remote/airlock{ + id = "barbackdoor"; + name = "Back Door Locks"; + pixel_x = -29; + pixel_y = 30; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"awn" = ( +/turf/simulated/wall/r_wall, +/area/bridge_hallway) +"awo" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"awp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"awq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"awr" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aws" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/secure_closet/bar, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"awt" = ( +/obj/structure/closet/gmcloset{ + name = "formal wardrobe" + }, +/obj/item/glass_jar, +/obj/item/device/retail_scanner/civilian, +/obj/item/device/retail_scanner/civilian, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"awu" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"awv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + id = "kitchen2"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aww" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/int{ + name = "Fire/Phoron Shelter" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"awx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/vending/fitness, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"awy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"awz" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"awA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"awB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"awC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"awD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"awE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_access = list(7) + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"awF" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"awG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"awH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"awI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"awJ" = ( +/obj/machinery/smartfridge, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"awK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"awL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"awM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"awN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"awO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"awP" = ( +/turf/simulated/wall, +/area/hydroponics) +"awQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"awR" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"awS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"awT" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"awU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"awV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"awW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"awX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"awY" = ( +/obj/machinery/r_n_d/circuit_imprinter{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"awZ" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/r_n_d/protolathe{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"axa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"axb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/machinery/computer/id_restorer{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"axc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"axd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"axe" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"axf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Private Restroom"; + req_access = newlist(); + req_one_access = newlist() + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"axg" = ( +/turf/simulated/wall, +/area/library) +"axh" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"axi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/library) +"axj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"axk" = ( +/obj/structure/sign/department/biblio, +/turf/simulated/wall, +/area/library) +"axl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"axm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"axn" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Front Desk"; + req_access = list(63); + req_one_access = list(63) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"axo" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/landmark/start{ + name = "Bartender" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"axp" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/gun/projectile/shotgun/doublebarrel, +/obj/item/weapon/paper{ + info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; + name = "Shotgun permit" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"axq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"axr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"axs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"axt" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"axu" = ( +/obj/structure/table/woodentable, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"axv" = ( +/mob/living/simple_mob/animal/passive/cow, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"axw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"axx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/tool/screwdriver, +/obj/item/clothing/mask/smokable/cigarette/cigar/havana, +/obj/item/clothing/mask/smokable/cigarette/cigar/cohiba, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"axy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"axz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"axA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"axB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"axC" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"axD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"axE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"axF" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/open, +/area/rnd/staircase/thirdfloor) +"axG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"axH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"axI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"axJ" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/storage/belt/utility, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/turf/simulated/floor/tiled, +/area/rnd/research) +"axK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"axL" = ( +/obj/structure/table/standard, +/obj/structure/reagent_dispensers/acid{ + density = 0; + pixel_y = -30 + }, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/pen, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/research) +"axM" = ( +/obj/structure/table/standard, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/item/clothing/gloves/sterile/latex, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/research) +"axN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"axO" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/rnd/staircase/thirdfloor) +"axP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"axQ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"axR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"axS" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Library" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/library) +"axT" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/library) +"axU" = ( +/obj/structure/bookcase{ + desc = "There appears to be a shrine to WGW at the back..."; + name = "Forbidden Knowledge" + }, +/obj/item/weapon/book/manual/engineering_hacking, +/obj/item/weapon/book/manual/nuclear, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"axV" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/closet, +/obj/item/clothing/under/suit_jacket/red, +/obj/item/weapon/barcodescanner, +/obj/item/weapon/pen/invisible, +/obj/item/weapon/pen/invisible, +/obj/item/weapon/pen/invisible, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"axW" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/briefcase{ + pixel_x = -2; + pixel_y = -5 + }, +/obj/item/weapon/storage/briefcase{ + pixel_x = 3 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"axX" = ( +/obj/structure/sign/department/chapel, +/turf/simulated/wall/r_wall, +/area/vacant/vacant_shop) +"axY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"axZ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aya" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"ayb" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"ayc" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/button/windowtint{ + id = "secreet"; + name = "Window Tint Control"; + pixel_x = -25; + range = 15 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"ayd" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"aye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"ayf" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"ayg" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/botanystorage) +"ayh" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/carry, +/area/shuttle/tether) +"ayi" = ( +/obj/structure/disposalpipe/sortjunction{ + name = "Research"; + sortType = "Research" + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"ayj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"ayk" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/rnd/staircase/thirdfloor) +"ayl" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aym" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/research) +"ayn" = ( +/obj/structure/sign/directions/evac{ + dir = 1 + }, +/turf/simulated/wall, +/area/rnd/research) +"ayo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_access = list(7) + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"ayp" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"ayq" = ( +/obj/structure/bed/chair, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"ayr" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"ays" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ayt" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/rnd/research) +"ayu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ayv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ayw" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"ayx" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/heads/hop) +"ayy" = ( +/obj/structure/table/woodentable, +/obj/machinery/libraryscanner, +/turf/simulated/floor/carpet, +/area/library) +"ayz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/library) +"ayA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/library) +"ayB" = ( +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"ayC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"ayD" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"ayE" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"ayF" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"ayG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"ayH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ayI" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Librarian" + }, +/turf/simulated/floor/carpet, +/area/library) +"ayJ" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"ayK" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Xenoflora Research"; + req_one_access = list(77) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"ayL" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"ayM" = ( +/turf/simulated/wall, +/area/tether/surfacebase/barbackmaintenance) +"ayN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"ayO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ayP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"ayQ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ayR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ayS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ayT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"ayU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ayV" = ( +/obj/machinery/autolathe{ + hacked = 1 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"ayW" = ( +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = -26 + }, +/obj/item/weapon/paper{ + desc = ""; + info = "Please wear hearing and eye protection when testing firearms."; + name = "note to science staff" + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"ayX" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"ayY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"ayZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aza" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"azc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/research) +"azd" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"aze" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azf" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/mauve/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azg" = ( +/obj/machinery/newscaster{ + pixel_x = 25 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"azh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/wood, +/area/library) +"azi" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Librarian" + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"azj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"azk" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"azl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"azm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"azn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled, +/area/rnd/research_storage) +"azo" = ( +/obj/structure/closet{ + name = "materials" + }, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"azp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"azq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azr" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"azs" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"azt" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"azu" = ( +/obj/structure/medical_stand, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"azv" = ( +/obj/structure/sign/double/barsign{ + dir = 8 + }, +/turf/simulated/wall, +/area/crew_quarters/bar) +"azw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"azy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azD" = ( +/obj/structure/closet{ + name = "mechanical equipment" + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"azE" = ( +/obj/structure/closet{ + name = "robotics parts" + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/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/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"azF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"azG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Research Staircase" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"azH" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/robotics) +"azI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"azJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azK" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"azL" = ( +/turf/simulated/wall/r_wall, +/area/rnd/research/testingrange) +"azM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"azN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"azO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"azP" = ( +/turf/simulated/wall, +/area/tether/surfacebase/library/study) +"azQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/library) +"azR" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/library) +"azS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/library) +"azT" = ( +/turf/simulated/floor/wood, +/area/library) +"azU" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"azV" = ( +/obj/structure/table/woodentable, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/taperecorder, +/turf/simulated/floor/carpet, +/area/library) +"azW" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/library) +"azX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/servicebackroom) +"azY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/botanystorage) +"azZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aAa" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/servicebackroom) +"aAb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/servicebackroom) +"aAc" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aAd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aAe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"aAf" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aAg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aAh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"aAi" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/library) +"aAj" = ( +/obj/machinery/vending/wallmed1/public{ + pixel_x = -28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"aAk" = ( +/obj/structure/flora/pottedplant/unusual, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aAl" = ( +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/structure/table/rack/steel, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"aAm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aAn" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/vending/cola{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aAo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aAp" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aAq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aAr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/sortjunction{ + name = "Xenobiology"; + sortType = "Xenobiology" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aAs" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aAt" = ( +/obj/structure/flora/pottedplant/subterranean, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aAu" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aAv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aAw" = ( +/obj/structure/table/woodentable, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/item/device/retail_scanner/civilian{ + dir = 1 + }, +/obj/item/device/camera, +/obj/item/device/tape, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"aAx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"aAy" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/invisible, +/obj/machinery/light/small, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"aAz" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/library) +"aAA" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/library) +"aAB" = ( +/turf/simulated/wall, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"aAC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/botanystorage) +"aAD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/botanystorage) +"aAE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet, +/area/library) +"aAF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aAG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aAH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aAI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aAJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aAK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aAL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/chem_master/condimaster, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aAM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aAN" = ( +/turf/simulated/open, +/area/hallway/lower/third_south) +"aAO" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/machinery/camera/network/research/xenobio{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aAP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aAQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aAR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/botanystorage) +"aAS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aAT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aAU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aAV" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aAW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aAX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aAY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aAZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aBa" = ( +/obj/structure/table/standard, +/obj/item/device/lightreplacer, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aBb" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aBc" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aBd" = ( +/obj/machinery/door/airlock/glass{ + name = "Hydroponics Storage"; + req_one_access = list(35,28) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aBe" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aBf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aBg" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aBh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aBi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aBj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Research Staircase" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aBk" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aBl" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aBm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aBn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aBo" = ( +/obj/machinery/door/airlock/command{ + name = "Site Manager's Quarters"; + req_access = list(20) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aBp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/grass, +/area/hydroponics) +"aBq" = ( +/obj/item/device/radio/intercom{ + pixel_y = -28 + }, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"aBr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aBs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"aBt" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"aBu" = ( +/obj/machinery/holoplant, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/camera/network/research/xenobio{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aBv" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/weapon/paper, +/turf/simulated/floor/carpet, +/area/library) +"aBw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_research{ + name = "Research Staircase" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aBx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aBy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/hydroponics/cafegarden) +"aBz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aBA" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aBB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aBC" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/woodentable, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aBD" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/machinery/appliance/mixer/cereal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aBE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aBF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aBG" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/grass, +/area/hydroponics) +"aBH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aBI" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aBJ" = ( +/obj/structure/kitchenspike, +/obj/machinery/alarm/freezer{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"aBK" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorblack, +/obj/machinery/door/airlock/glass_research{ + frequency = 1392; + icon_state = "door_locked"; + id_tag = "xenobiology_north_airlock_inner"; + locked = 1; + name = "Xenobiology North Airlock" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1392; + master_tag = "xenobiology_north_airlock_control"; + name = "Xenobiology Access Control"; + pixel_y = -24; + req_one_access = list(47,55) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aBL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aBM" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aBN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aBO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aBP" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/signnew/secure, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aBQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aBR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aBS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/machinery/camera/network/research, +/obj/structure/bed/chair, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aBT" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/ai_status_display{ + pixel_y = 30 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aBU" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aBV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aBW" = ( +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aBX" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aBY" = ( +/obj/structure/sign/department/sci{ + pixel_x = -32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aBZ" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aCa" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aCb" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper{ + desc = ""; + info = "This is a direct notice to anyone using firing range: All tests involving destruction of testing facilities MUST be run through Research Director or Central Command before anyone even so much as thinks about going through with this, or be moved outside to where test cannot affect any existing facility. This is both to maintain a professional environment, and ensure nobody else is harmed during these experiments. Nobody wants another 'two SM shards going nuclear in the firing range' incident again, especially not the people handling your paychecks."; + name = "note to science staff" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aCc" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aCd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + frequency = 1392; + id_tag = "xenobiology_north_airlock_control"; + name = "Xenobiology Access Controller"; + pixel_y = -24; + req_one_access = list(47,55); + tag_exterior_door = "xenobiology_north_airlock_outer"; + tag_interior_door = "xenobiology_north_airlock_inner" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aCe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aCf" = ( +/obj/machinery/appliance/mixer/candy, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aCg" = ( +/obj/structure/table/woodentable, +/obj/machinery/light, +/obj/item/weapon/packageWrap, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aCh" = ( +/obj/machinery/door/airlock{ + name = "Service"; + req_one_access = list(35,28) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aCi" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aCj" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aCk" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/sinpockets, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aCl" = ( +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled, +/area/hydroponics) +"aCm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aCn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"aCo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/botanystorage) +"aCp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/botanystorage) +"aCq" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aCr" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aCs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aCt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aCu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + name = "Robotics Desk"; + req_access = list(7); + req_one_access = list(47) + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aCv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aCw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aCx" = ( +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aCy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aCz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aCA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aCB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aCC" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/mask/smokable/pipe/cobpipe, +/obj/item/clothing/mask/smokable/cigarette/joint, +/obj/item/weapon/flame/lighter/random, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aCD" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aCE" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aCF" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"aCG" = ( +/obj/machinery/bookbinder, +/turf/simulated/floor/wood, +/area/library) +"aCH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Library Conference Room" + }, +/turf/simulated/floor/wood, +/area/library) +"aCI" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/grass, +/area/hydroponics) +"aCJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aCK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aCL" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Surface Civilian Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"aCM" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/woodentable, +/obj/item/device/tvcamera, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 6 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"aCN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aCO" = ( +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aCP" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"aCQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"aCR" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/grass, +/area/hydroponics) +"aCS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"aCT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aCU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aCV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aCW" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aCX" = ( +/obj/machinery/seed_storage/garden, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aCY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_three) +"aCZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_three) +"aDa" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) +"aDb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_three) +"aDc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_three) +"aDd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) +"aDe" = ( +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) +"aDf" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) +"aDg" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDi" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDk" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDo" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/curtain/open/shower, +/obj/machinery/camera/network/research/xenobio{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aDp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aDq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_three) +"aDr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDs" = ( +/turf/simulated/open, +/area/tether/surfacebase/public_garden_three) +"aDt" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/minihoe, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/device/analyzer/plant_analyzer, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDu" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDv" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDw" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_three) +"aDz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_three) +"aDA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/table/woodentable, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDC" = ( +/obj/item/bee_pack, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/weapon/tool/crowbar, +/obj/item/bee_smoker, +/obj/item/beehive_assembly, +/obj/structure/closet/crate/hydroponics{ + desc = "All you need to start your own honey farm."; + name = "beekeeping crate" + }, +/obj/item/beehive_assembly, +/obj/item/beehive_assembly, +/obj/item/beehive_assembly, +/obj/item/beehive_assembly, +/obj/item/bee_pack, +/obj/item/bee_pack, +/obj/item/bee_pack, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aDD" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_three) +"aDG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDH" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 32; + icon_state = "32-1" + }, +/turf/simulated/open, +/area/tether/surfacebase/public_garden_three) +"aDI" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/grass, +/area/hydroponics) +"aDJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDL" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/light, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) +"aDM" = ( +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aDN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDO" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_three) +"aDQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_three) +"aDR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aDS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_three) +"aDT" = ( +/obj/machinery/light, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) +"aDU" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/paperplane, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aDV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Service"; + sortType = "Service" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aDW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aDX" = ( +/obj/machinery/smartfridge, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aDY" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/grass, +/area/hydroponics) +"aDZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aEa" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aEc" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = list(57) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEd" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "DRAMATIC"; + name = "Dramatic Blast Door" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "draama"; + name = "Mystery Window" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "draama"; + name = "Mystery Window" + }, +/obj/machinery/door/blast/shutters{ + id = "Druma"; + layer = 3.3; + name = "Entertainment Shutters" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/entertainment) +"aEe" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/blue, +/obj/item/weapon/pen, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEf" = ( +/obj/machinery/recharge_station, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aEg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEh" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/grass, +/area/hydroponics) +"aEi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aEj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aEk" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/item/weapon/shovel/spade, +/obj/item/weapon/storage/belt/utility, +/obj/item/stack/material/sandstone{ + amount = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aEl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aEm" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aEn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aEo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aEp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aEq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aEr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aEs" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_one_access = list(47,55) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aEt" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "xenobiolockdown"; + name = "Xenobiology Lockdown Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aEu" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"aEv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aEw" = ( +/obj/machinery/camera/network/research/xenobio{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aEx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/botanystorage) +"aEy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "xenobiolockdown"; + name = "Xenobiology Lockdown Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aEz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/library) +"aEA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/grille, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_three_hall) +"aEB" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aEC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/turf/simulated/floor/wood, +/area/library) +"aED" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke, +/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath, +/obj/item/weapon/book/custom_library/fiction/myrock, +/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones, +/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart, +/turf/simulated/floor/wood, +/area/library) +"aEE" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/library) +"aEF" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aEG" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/carpet, +/area/library) +"aEH" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bookcase/bookcart, +/turf/simulated/floor/wood, +/area/library) +"aEI" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/obj/item/weapon/book/codex/lore/robutt, +/obj/item/weapon/book/codex, +/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs, +/turf/simulated/floor/wood, +/area/library) +"aEJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/library) +"aEK" = ( +/obj/random/tech_supply, +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/item/stack/cable_coil/random, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"aEL" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/item/weapon/shovel/spade, +/obj/item/weapon/storage/belt/utility, +/obj/item/stack/material/sandstone{ + amount = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aEM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aEN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aEO" = ( +/obj/structure/cable/orange, +/obj/structure/cable/orange{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Surface Civilian Subgrid"; + name_tag = "Surface Civilian Subgrid" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"aEP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/library) +"aEQ" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/library) +"aER" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/library) +"aES" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aET" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aEU" = ( +/turf/simulated/floor/carpet, +/area/library) +"aEV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/library) +"aEW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aEX" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aEY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aEZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass, +/area/hydroponics) +"aFa" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics Storage"; + req_one_access = list(35,28) + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFb" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/wrench, +/obj/effect/floor_decal/corner/lime/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/library) +"aFd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/obj/item/weapon/book/custom_library/religious/feastofkubera, +/obj/item/weapon/book/custom_library/religious/storyoflordganesha, +/obj/item/weapon/book/custom_library/religious/sungoddessofkorea, +/obj/item/weapon/book/custom_library/religious/wayofbleedingswan, +/turf/simulated/floor/wood, +/area/library) +"aFe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"aFf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aFg" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"aFi" = ( +/obj/structure/table/glass, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aFj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aFk" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/weapon/material/knife, +/obj/item/weapon/material/knife, +/obj/effect/floor_decal/corner/lime/full{ + dir = 1 + }, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/minihoe, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aFn" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/library) +"aFo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + frequency = 1392; + icon_state = "door_locked"; + id_tag = "xenobiology_north_airlock_outer"; + locked = 1; + name = "Xenobiology North Airlock" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + command = "cycle_exterior"; + frequency = 1392; + master_tag = "xenobiology_north_airlock_control"; + name = "Xenobiology Access Control"; + pixel_y = -24; + req_one_access = list(47,55) + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aFp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aFq" = ( +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/clothing/gloves/fyellow, +/obj/item/weapon/book{ + author = "Urist McHopefulsoul"; + desc = "It contains fourty blank pages followed by the entire screenplay of a movie called 'Requiem for a Dream'"; + name = "A Comprehensive Guide to Assisting" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/shuttle_pad) +"aFr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/library) +"aFs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"aFt" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/library) +"aFu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Librarian" + }, +/turf/simulated/floor/carpet, +/area/library) +"aFv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/robotics) +"aFw" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/structure/window/reinforced, +/obj/machinery/camera/network/research{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aFx" = ( +/obj/item/clothing/under/color/grey, +/obj/item/clothing/mask/gas/wwii, +/obj/item/weapon/storage/belt/utility/full, +/turf/simulated/floor/plating, +/area/tether/surfacebase/shuttle_pad) +"aFy" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"aFz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/flora/ausbushes/pointybush, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"aFA" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/tether/surfacebase/barbackmaintenance) +"aFB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFC" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aFD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/full, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFF" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/camera/network/research/xenobio{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aFG" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/newscaster{ + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aFJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aFK" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aFL" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/sign/signnew/secure, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aFM" = ( +/turf/simulated/wall, +/area/tether/surfacebase/servicebackroom) +"aFN" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/item/weapon/storage/bag/trash, +/obj/item/weapon/storage/bag/trash, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aFO" = ( +/obj/machinery/door/airlock{ + name = "Service"; + req_one_access = list(35,28) + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aFP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aFQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aFR" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aFS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aFT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/closet/hydrant{ + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aFU" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/library) +"aFV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/robotics) +"aFW" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/dark, +/area/rnd/robotics/surgeryroom2) +"aFX" = ( +/obj/random/tech_supply, +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"aFY" = ( +/obj/machinery/button/windowtint{ + id = "draama"; + layer = 3.3; + name = "Mystery Window Tint Control"; + pixel_x = 3; + pixel_y = -29; + range = 10 + }, +/obj/machinery/button/remote/blast_door{ + id = "DRAMATIC"; + name = "Dramatic Blast Doors"; + pixel_x = 24; + pixel_y = -10 + }, +/obj/machinery/button/remote/blast_door{ + id = "Druma"; + name = "Entertainment Shutter Control"; + pixel_x = 24; + pixel_y = 10 + }, +/obj/item/weapon/stool/padded, +/obj/effect/landmark/start{ + name = "Entertainer" + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"aFZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"aGa" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aGb" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aGc" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aGd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/requests_console{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aGe" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aGf" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aGg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/civilian, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aGh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen"; + req_access = list(28) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aGi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/appliance/cooker/fryer, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aGj" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aGk" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"aGl" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/goggles, +/obj/structure/window/reinforced, +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aGm" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aGn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aGo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1382; + icon_state = "door_locked"; + id_tag = "xenobiology_airlock_outer"; + locked = 1; + name = "Xenobiology Exterior Airlock Doors"; + req_one_access = list(47,55) + }, +/obj/machinery/access_button/airlock_interior{ + command = "cycle_exterior"; + frequency = 1382; + master_tag = "xenobiology_airlock_control"; + name = "Xenobiology Access Control"; + pixel_x = -24; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aGp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aGq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aGr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aGs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1382; + icon_state = "door_locked"; + id_tag = "xenobiology_airlock_outer"; + locked = 1; + name = "Xenobiology Exterior Airlock Doors"; + req_one_access = list(47,55) + }, +/obj/machinery/access_button/airlock_interior{ + command = "cycle_exterior"; + frequency = 1382; + master_tag = "xenobiology_airlock_control"; + name = "Xenobiology Access Control"; + pixel_x = 24; + pixel_y = 4; + req_one_access = list(47,55) + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aGt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"aGu" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aGv" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aGw" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/item/weapon/book/manual/hydroponics_pod_people, +/obj/item/weapon/book/manual/mass_spectrometry, +/obj/item/weapon/book/manual/materials_chemistry_analysis, +/obj/item/weapon/book/manual/medical_cloning, +/obj/item/weapon/book/manual/medical_diagnostics_manual, +/obj/item/weapon/book/manual/research_and_development, +/obj/item/weapon/book/manual/resleeving, +/obj/item/weapon/book/manual/ripley_build_and_repair, +/obj/item/weapon/book/manual/robotics_cyborgs, +/obj/item/weapon/book/manual/rust_engine, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/stasis, +/obj/item/weapon/book/manual/supermatter_engine, +/turf/simulated/floor/wood, +/area/library) +"aGx" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"aGy" = ( +/obj/structure/railing, +/obj/structure/grille, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/lower/third_south) +"aGz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Bar Substation" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"aGA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aGB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aGC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aGD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aGE" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "DRAMATIC"; + name = "Dramatic Blast Door" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "draama"; + name = "Mystery Window" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "draama"; + name = "Mystery Window" + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "Druma"; + layer = 3.3; + name = "Entertainment Shutters" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/entertainment) +"aGF" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aGG" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aGH" = ( +/obj/structure/table/woodentable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aGI" = ( +/obj/machinery/vending/cola/soft, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aGJ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aGK" = ( +/turf/simulated/wall, +/area/crew_quarters/barrestroom) +"aGL" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 10 + }, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aGM" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aGN" = ( +/obj/structure/window/basic/full, +/obj/structure/grille, +/obj/structure/window/basic, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aGO" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/carry, +/area/shuttle/tourbus/engines) +"aGP" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aGQ" = ( +/turf/simulated/wall/r_wall, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aGR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aGS" = ( +/obj/machinery/r_n_d/circuit_imprinter{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aGT" = ( +/obj/machinery/mecha_part_fabricator/pros{ + dir = 1 + }, +/obj/structure/reagent_dispensers/acid{ + density = 0; + pixel_y = -30 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aGU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aGV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aGW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aGX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aGY" = ( +/obj/item/weapon/tape_roll, +/obj/item/weapon/packageWrap, +/obj/item/weapon/dice, +/obj/item/weapon/dice/d20, +/obj/item/weapon/deck/cards, +/obj/item/weapon/folder/yellow, +/obj/structure/closet/walllocker_double{ + dir = 8; + pixel_x = -28 + }, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/turf/simulated/floor/wood, +/area/library) +"aGZ" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHa" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHb" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"aHd" = ( +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/library) +"aHe" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aHf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHg" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/item/weapon/book/manual/anomaly_spectroscopy, +/obj/item/weapon/book/manual/anomaly_testing, +/obj/item/weapon/book/manual/atmospipes, +/obj/item/weapon/book/manual/barman_recipes, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/detective, +/obj/item/weapon/book/manual/engineering_construction, +/obj/item/weapon/book/manual/engineering_guide, +/obj/item/weapon/book/manual/engineering_particle_accelerator, +/obj/item/weapon/book/manual/engineering_singularity_safety, +/obj/item/weapon/book/manual/evaguide, +/obj/item/weapon/book/manual/excavation, +/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide, +/turf/simulated/floor/wood, +/area/library) +"aHh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aHk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHl" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aHm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aHo" = ( +/obj/machinery/light, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aHp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aHq" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aHr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/sign/department/bar, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"aHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aHt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHu" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/crew_quarters/bar) +"aHv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"aHw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aHx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aHy" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aHz" = ( +/obj/structure/device/piano, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"aHA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aHB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/table/marble, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aHC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"aHD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/robotics) +"aHE" = ( +/obj/structure/window/basic/full, +/obj/structure/grille, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aHF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aHG" = ( +/obj/machinery/autolathe{ + dir = 1; + hacked = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aHH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aHI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aHJ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access = list(29,47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aHM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aHN" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Robotics"; + sortType = "Robotics" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aHO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aHP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/light, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aHQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHS" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + pixel_x = 22; + pixel_y = -7; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aHT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHU" = ( +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/structure/closet/l3closet/scientist, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aHW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aHZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIc" = ( +/obj/machinery/computer/timeclock/premade/east, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aId" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"aIe" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"aIf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aIg" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aIh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aIi" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aIj" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aIk" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aIl" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aIm" = ( +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aIn" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aIo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/weapon/stool/padded, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aIp" = ( +/obj/structure/flora/pottedplant/unusual, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aIq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aIr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1382; + icon_state = "door_locked"; + id_tag = "xenobiology_airlock_inner"; + locked = 1; + name = "Xenobiology Interior Airlock Doors"; + req_one_access = list(47,55) + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1382; + master_tag = "xenobiology_airlock_control"; + name = "Xenobiology Access Control"; + pixel_x = -24; + pixel_y = 4; + req_one_access = list(47,55) + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aIs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1382; + icon_state = "door_locked"; + id_tag = "xenobiology_airlock_inner"; + locked = 1; + name = "Xenobiology Interior Airlock Doors"; + req_one_access = list(47,55) + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1382; + master_tag = "xenobiology_airlock_control"; + name = "Xenobiology Access Control"; + pixel_x = 24; + pixel_y = 4; + req_one_access = list(47,55) + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aIt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aIv" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aIw" = ( +/turf/simulated/wall, +/area/rnd/robotics/mechbay) +"aIx" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/department/robo{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIA" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIB" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aID" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIE" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/library) +"aIF" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"aIG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIH" = ( +/obj/structure/table/marble, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aII" = ( +/obj/structure/sign/department/bar{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIJ" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aIK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aIL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aIM" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aIN" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aIO" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aIP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aIQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Bartender" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"aIR" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aIS" = ( +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aIT" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aIU" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aIV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aIW" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aIX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "xenobiolockdown"; + name = "Xenobiology Lockdown Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aIY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aIZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "xenobiolockdown"; + name = "Xenobiology Lockdown Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aJa" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "xenobiolockdown"; + name = "Xenobiology Lockdown Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + frequency = 1382; + id_tag = "xenobiology_airlock_control"; + name = "Xenobiology Access Controller"; + pixel_x = 25; + tag_exterior_door = "xenobiology_airlock_outer"; + tag_interior_door = "xenobiology_airlock_inner" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aJb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aJc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aJd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aJe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aJf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aJg" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "mechbay"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aJh" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aJi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aJj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aJk" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aJl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/beakers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aJm" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aJn" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/hallway/lower/third_south) +"aJo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_external/public, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aJp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_external/public, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aJq" = ( +/obj/structure/bed/chair/comfy, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aJr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aJs" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/grille, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/bar) +"aJt" = ( +/turf/simulated/wall, +/area/tether/surfacebase/bar_backroom) +"aJu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aJv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/machinery/recharger, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aJw" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"aJx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aJy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aJz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aJA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aJB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aJC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aJD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aJE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aJF" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aJG" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aJH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aJI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aJJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aJK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aJL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aJM" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aJN" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aJO" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aJP" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aJQ" = ( +/obj/machinery/recharge_station, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aJR" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aJS" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = -64 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aJT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/rnd/robotics/mechbay) +"aJU" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/rnd/robotics/mechbay) +"aJV" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/packageWrap, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hydroponics) +"aJW" = ( +/turf/simulated/wall, +/area/rnd/robotics/surgeryroom2) +"aJX" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aJY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aJZ" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKa" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKb" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + id = "kitchen2"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aKd" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKe" = ( +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"aKf" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/tether/surfacebase/shuttle_pad) +"aKg" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKj" = ( +/turf/simulated/wall, +/area/tether/surfacebase/shuttle_pad) +"aKk" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/dark, +/area/rnd/robotics/surgeryroom1) +"aKl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aKm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aKn" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/bar) +"aKo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aKp" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aKq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"aKr" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aKs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"aKt" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Garden"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/freezer, +/area/hydroponics/cafegarden) +"aKu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aKv" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aKw" = ( +/obj/machinery/light, +/mob/living/simple_mob/animal/passive/chicken, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"aKx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aKy" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aKz" = ( +/obj/structure/window/basic/full, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aKA" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Xenobiology First Aid"; + req_one_access = list(5,47) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aKB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aKC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aKD" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/window/brigdoor/southleft{ + req_access = list(47); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aKF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/goggles, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aKG" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/goggles, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aKH" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/goggles, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aKI" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/shuttle_pad) +"aKJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/disposalpipe/sortjunction{ + name = "HOS Office"; + sortType = "HOS Office" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aKK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aKL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "mechbay-inner"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aKM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aKN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aKO" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/bluegrid, +/area/rnd/robotics/mechbay) +"aKP" = ( +/turf/simulated/floor/bluegrid, +/area/rnd/robotics/mechbay) +"aKQ" = ( +/obj/machinery/mech_recharger, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/rnd/robotics/mechbay) +"aKR" = ( +/obj/structure/closet/secure_closet/medical_wall/anesthetics{ + pixel_x = -32; + req_access = list(); + req_one_access = list(29,45) + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/button/windowtint{ + id = "robo_surg_2"; + pixel_y = 25 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom2) +"aKS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom2) +"aKT" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKU" = ( +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/shuttle_pad) +"aKV" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aKZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aLa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aLb" = ( +/obj/structure/closet/crate, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aLc" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aLd" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"aLe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "freezer"; + name = "Freezer Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/freezer) +"aLf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aLg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aLh" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aLi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aLj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aLk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aLl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aLm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aLn" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aLo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aLp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aLq" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/paper{ + desc = ""; + info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management"; + name = "note to science staff" + }, +/obj/item/device/robotanalyzer, +/obj/item/device/robotanalyzer, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom2) +"aLr" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized/full{ + id = "robo_surg_2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom2) +"aLs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aLt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aLu" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"aLv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aLw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aLx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + id = "mechbay-inner"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aLy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aLz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aLA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_external/public, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aLB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_external/public, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aLC" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aLD" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aLE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aLF" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aLG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aLH" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "serviceblock2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aLI" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aLJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/sinpockets, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aLK" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 1; + id = "serviceblock2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aLL" = ( +/turf/simulated/open, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aLM" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/open, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aLN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aLO" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Equipment Storage"; + req_one_access = list(55) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aLP" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/library) +"aLQ" = ( +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + pixel_x = 22; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aLR" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_one_access = list(47,55) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aLS" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aLT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aLU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/rnd/robotics/mechbay) +"aLV" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/bluegrid, +/area/rnd/robotics/mechbay) +"aLW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"aLX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom2) +"aLY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom2) +"aLZ" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Surgery Room"; + req_one_access = list(29,47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom2) +"aMa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aMb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/orange{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aMc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aMd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aMe" = ( +/obj/structure/cable/orange{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"aMf" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "tether_pad_airlock"; + pixel_y = 28; + tag_door = "tether_pad_hatch" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "tether_pad_sensor"; + pixel_x = -11; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aMg" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aMh" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aMi" = ( +/obj/structure/flora/pottedplant/unusual, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aMj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aMk" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/library) +"aMl" = ( +/turf/simulated/open, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aMm" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/flora/pottedplant/unusual, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aMn" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/radio/phone, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aMo" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aMp" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aMq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_x = 30; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aMr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aMs" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"aMt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aMu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "mechbay-inner"; + name = "Mech Bay"; + pixel_x = 26; + pixel_y = -26; + req_access = list(29,47); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aMv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "mechbay-inner"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aMw" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -25 + }, +/obj/machinery/vending/wallmed1/public{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"aMx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "mechbay-inner"; + name = "Mech Bay"; + pixel_x = -26; + pixel_y = -26; + req_access = list(29,47); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aMy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aMz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom2) +"aMA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/orange{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aMB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"aMD" = ( +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"aME" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/tether) +"aMF" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/shuttle/plating/airless, +/area/shuttle/tether) +"aMG" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aMH" = ( +/obj/structure/flora/pottedplant/crystal, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aMI" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aMJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aMK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aML" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aMM" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aMN" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aMO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aMP" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom2) +"aMQ" = ( +/obj/structure/table/standard, +/obj/item/device/defib_kit/jumper_kit, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom2) +"aMR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aMS" = ( +/obj/machinery/vending/fitness, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"aMT" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aMU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"aMV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aMW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aMX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aMY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"aMZ" = ( +/obj/structure/closet/firecloset, +/turf/simulated/shuttle/floor/black, +/area/shuttle/tether) +"aNa" = ( +/obj/machinery/computer/shuttle_control/tether_backup{ + req_one_access = list() + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/tether) +"aNb" = ( +/obj/structure/closet/emcloset, +/turf/simulated/shuttle/floor/black, +/area/shuttle/tether) +"aNc" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aNd" = ( +/obj/structure/table/glass, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aNe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aNf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aNg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aNh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aNi" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/shuttle_pad) +"aNj" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/wall, +/area/tether/surfacebase/shuttle_pad) +"aNk" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/tether) +"aNl" = ( +/turf/simulated/shuttle/floor/black, +/area/shuttle/tether) +"aNm" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "tether_shuttle"; + pixel_x = 25; + tag_door = "tether_shuttle_hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/tether) +"aNn" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aNo" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aNp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aNq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aNr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/target_stake, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aNs" = ( +/obj/machinery/cryopod/robot, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aNt" = ( +/obj/machinery/cryopod/robot, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"aNu" = ( +/obj/machinery/computer/cryopod/robot{ + dir = 1; + pixel_y = -28 + }, +/turf/simulated/floor/bluegrid, +/area/rnd/robotics/mechbay) +"aNv" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 2; + pixel_y = -28 + }, +/turf/simulated/floor/bluegrid, +/area/rnd/robotics/mechbay) +"aNw" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/bluegrid, +/area/rnd/robotics/mechbay) +"aNx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aNy" = ( +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aNz" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "tether_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/tether) +"aNA" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aNB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aNC" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/perfect_tele{ + desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Site Manager's, and they are authorized to use it."; + name = "manager's translocator" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aND" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aNE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aNF" = ( +/turf/simulated/wall, +/area/rnd/robotics/surgeryroom1) +"aNG" = ( +/obj/structure/cable/orange{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/shuttle_pad) +"aNH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aNI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25; + target_temperature = 270 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aNJ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/tether) +"aNK" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/tether) +"aNL" = ( +/obj/structure/window/basic/full, +/obj/structure/grille, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aNM" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aNN" = ( +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/shuttle_pad) +"aNO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aNP" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless, +/area/shuttle/tether) +"aNQ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/open, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aNR" = ( +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aNS" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aNT" = ( +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aNU" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aNV" = ( +/obj/structure/sign/department/xenolab, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aNW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aNX" = ( +/obj/structure/closet/hydrant{ + pixel_y = -32 + }, +/turf/simulated/wall, +/area/tether/surfacebase/shuttle_pad) +"aNY" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "hangarsurface"; + name = "Engine Repair Bay"; + pixel_y = -25 + }, +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/shuttle_pad) +"aNZ" = ( +/obj/structure/sign/xenobio, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aOa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aOd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aOe" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aOf" = ( +/turf/simulated/wall/r_wall, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aOg" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aOh" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aOi" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aOj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOk" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOl" = ( +/obj/machinery/ion_engine, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOm" = ( +/obj/structure/railing, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aOn" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aOo" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aOp" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aOq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aOr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aOs" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aOt" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aOu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aOv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aOw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"aOx" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aOy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common{ + name = "Engine Repair Bay" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aOE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aOF" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aOG" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aOH" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aOI" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aOJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aOK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aOL" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aOM" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tool, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aON" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/tech_supply, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOP" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/weldingtool, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aOQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aOR" = ( +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_office) +"aOS" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aOT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aOV" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/cautery, +/obj/item/weapon/autopsy_scanner, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aOW" = ( +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aOX" = ( +/obj/structure/disposalpipe/junction, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aOY" = ( +/obj/structure/window/basic/full, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aOZ" = ( +/obj/machinery/newscaster, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPa" = ( +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aPb" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/shuttle_pad) +"aPc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aPd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aPe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aPf" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aPg" = ( +/obj/machinery/computer/area_atmos/tag{ + scrub_id = "xeno_phoron_pen_scrubbers" + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aPh" = ( +/obj/machinery/computer/security/xenobio, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aPi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Site Manager" + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "cap_office"; + name = "Security Shutters"; + pixel_x = 30; + pixel_y = 16 + }, +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aPj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aPk" = ( +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aPl" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPm" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPn" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aPp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aPq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aPr" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aPs" = ( +/turf/simulated/wall, +/area/tether/surfacebase/southhall) +"aPt" = ( +/obj/machinery/light/small, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"aPu" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"aPv" = ( +/obj/structure/window/basic/full, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_office) +"aPw" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aPx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiolockdown"; + name = "Xenobiology Lockdown Control"; + pixel_x = -35; + req_one_access = list(47,55) + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aPy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aPz" = ( +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aPA" = ( +/obj/structure/table/glass, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/masks, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aPB" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPC" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/command{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aPD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aPE" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 10 + }, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPF" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "serviceblock2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aPG" = ( +/obj/random/mob/mouse, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPK" = ( +/obj/structure/window/basic/full, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPL" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"aPM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"aPN" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aPO" = ( +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aPP" = ( +/obj/structure/sign/department/xenolab, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_office) +"aPQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aPR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aPS" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aPT" = ( +/obj/structure/sign/department/xenolab, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPU" = ( +/obj/machinery/vending/fitness{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPV" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aPW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPY" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aPZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/orange{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"aQa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"aQb" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQc" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQd" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/open, +/area/tether/surfacebase/north_stairs_three) +"aQe" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aQf" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"aQg" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQj" = ( +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQk" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQl" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Xenobiology"; + sortType = "Xenobiology" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aQo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aQq" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Office"; + req_one_access = list(55) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/outpost/xenobiology/outpost_office) +"aQr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aQs" = ( +/obj/machinery/door/airlock/glass_science{ + name = "Break Room" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQu" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQv" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQw" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQx" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aQB" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aQC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aQD" = ( +/obj/structure/catwalk, +/obj/machinery/camera/network/outside{ + dir = 9 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aQG" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQH" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/stack/material/phoron{ + amount = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/reagent_containers/syringe, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQI" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQL" = ( +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQM" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aQN" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQO" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQP" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aQR" = ( +/obj/structure/table/glass, +/obj/item/bodybag, +/obj/item/device/healthanalyzer, +/obj/random/medical, +/obj/structure/closet/medical_wall{ + pixel_y = 35 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aQS" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQT" = ( +/obj/structure/flora/pottedplant/crystal, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aQU" = ( +/obj/machinery/camera/network/outside{ + dir = 9 + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQV" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/machinery/light, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aQW" = ( +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aQY" = ( +/obj/machinery/light, +/obj/machinery/media/jukebox, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aRa" = ( +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRb" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Office"; + req_one_access = list(55) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRc" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aRd" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aRe" = ( +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Showers and Decontamination"; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRg" = ( +/obj/machinery/optable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRh" = ( +/obj/structure/catwalk, +/obj/machinery/camera/network/outside{ + dir = 5 + }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aRi" = ( +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRk" = ( +/obj/structure/table/standard, +/obj/item/toy/plushie/coffee_fox, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/weldingtool, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aRl" = ( +/obj/machinery/newscaster, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRm" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "serviceblock2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aRn" = ( +/obj/machinery/newscaster, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aRp" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRq" = ( +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRr" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower, +/obj/random/soap, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRs" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8 + }, +/obj/random/soap, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRt" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aRu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRv" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRw" = ( +/obj/structure/table/standard, +/obj/item/weapon/extinguisher, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/shoes/galoshes, +/obj/item/weapon/extinguisher, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aRx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRy" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Autopsy Room"; + req_one_access = list(55) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aRA" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/beakers, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aRB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Showers and Decontamination" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRE" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRF" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRG" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aRH" = ( +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"aRK" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aRL" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRM" = ( +/obj/structure/table/standard, +/obj/item/toy/plushie/purple_fox, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aRN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aRO" = ( +/obj/item/device/radio/intercom, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRP" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Autopsy Room"; + req_one_access = list(55) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRQ" = ( +/obj/structure/sign/department/xenolab, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aRR" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aRS" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aRT" = ( +/obj/structure/sign/department/xenolab, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Showers and Decontamination" + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRV" = ( +/obj/item/device/radio/intercom, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_decon) +"aRW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aRX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aRY" = ( +/obj/structure/bed/roller, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/device/defib_kit/loaded, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aRZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aSa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aSb" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aSc" = ( +/obj/machinery/door/firedoor/glass/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aSd" = ( +/obj/machinery/door/firedoor/glass/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aSe" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aSf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aSg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aSh" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aSi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + dir = 1; + id = "MedbayTriage"; + name = "Medbay Doors Control"; + pixel_x = -25; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"aSj" = ( +/obj/structure/window/basic/full, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_main) +"aSk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + pixel_x = 22; + pixel_y = -7; + report_danger_level = 0 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 23; + pixel_y = 13 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"aSl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aSm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/medical{ + name = "Medical Admin Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) +"aSn" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/admin) +"aSo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aSp" = ( +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aSq" = ( +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/adv, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aSr" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 32; + icon_state = "32-1" + }, +/obj/structure/window/basic/full, +/obj/structure/grille, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/turf/simulated/open, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aSs" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aSt" = ( +/obj/machinery/door/firedoor/glass/hidden, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aSu" = ( +/obj/effect/landmark{ + name = "droppod_landing" + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aSv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aSw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"aSx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aSy" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aSz" = ( +/obj/structure/window/basic/full, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_main) +"aSA" = ( +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aSB" = ( +/obj/structure/window/basic/full, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aSC" = ( +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -25; + pixel_y = -7 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aSD" = ( +/obj/structure/sign/redcross, +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aSE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + pixel_x = 22; + report_danger_level = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aSF" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/librarypubliccomp, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/library) +"aSG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aSH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aSI" = ( +/turf/simulated/wall, +/area/rnd/outpost/xenobiology/outpost_storage) +"aSJ" = ( +/obj/structure/window/basic/full, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_storage) +"aSK" = ( +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/effect/floor_decal/corner/green/full, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aSL" = ( +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aSM" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized/full{ + id = "medbayfoyer" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/triage) +"aSN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Security"; + sortType = "Security" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"aSO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aSP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aSQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aSR" = ( +/obj/machinery/papershredder, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aSS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aST" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aSU" = ( +/obj/machinery/vending/medical, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aSV" = ( +/obj/machinery/vending/blood, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aSW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aSX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aSY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aSZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aTa" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aTb" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aTc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aTd" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/chemistry) +"aTe" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Weapons Testing Range"; + req_access = list(47) + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aTf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aTh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aTi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aTj" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aTk" = ( +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aTm" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/medical/admin) +"aTp" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aTq" = ( +/obj/structure/table/standard, +/obj/item/device/healthanalyzer, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aTr" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"aTs" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aTt" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + layer = 1; + name = "Bridge Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor, +/area/bridge_hallway) +"aTu" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + name = "Bridge"; + req_access = list(19) + }, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + layer = 1; + name = "Bridge Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aTv" = ( +/obj/machinery/computer/station_alert/all{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aTw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aTx" = ( +/obj/structure/window/basic/full, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aTy" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "hop_office" + }, +/obj/structure/cable/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hop) +"aTz" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "hop_office" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hop) +"aTA" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aTB" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aTC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/device/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/device/radio, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/item/device/multitool, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aTD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aTE" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"aTF" = ( +/obj/structure/closet/crate/plastic, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"aTG" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aTH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aTI" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aTJ" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "serviceblock1" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aTK" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/weapon/pen, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/weapon/storage/box/body_record_disk{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aTL" = ( +/obj/structure/table/standard, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aTM" = ( +/obj/machinery/oxygen_pump/anesthetic, +/turf/simulated/wall, +/area/tether/surfacebase/medical/surgery2) +"aTN" = ( +/obj/structure/table/standard, +/obj/item/stack/nanopaste, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aTO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aTP" = ( +/obj/item/weapon/card/id/gold/captain/spare/fakespare, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"aTQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aTR" = ( +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aTS" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "serviceblock1" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aTT" = ( +/obj/machinery/door/morgue{ + dir = 2; + name = "Private Study"; + req_access = list(37) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"aTU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aTV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aTX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/upperhall) +"aTY" = ( +/obj/machinery/door/airlock/security{ + name = "Internal Affairs"; + req_access = list(38); + req_one_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"aUb" = ( +/obj/structure/bed/chair, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"aUc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aUd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aUe" = ( +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"aUf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aUg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aUi" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donut, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/item/weapon/paper_bin{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aUj" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aUk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aUl" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aUm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aUn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aUo" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/hallway/lower/third_south) +"aUp" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/hallway/lower/third_south) +"aUq" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"aUr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aUs" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/computer/transhuman/designer{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aUt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aUu" = ( +/obj/item/stack/material/plastic, +/obj/structure/table/rack, +/obj/item/stack/material/steel{ + amount = 3 + }, +/obj/random/maintenance/engineering, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"aUv" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aUw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aUy" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + layer = 1; + name = "Bridge Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aUz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aUA" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aUB" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 1; + id = "serviceblock1" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aUC" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lime/bordercorner, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aUD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aUF" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/obj/machinery/seed_storage/garden{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aUG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/closet/crate/freezer, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aUH" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aUI" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aUJ" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aUK" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aUL" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aUM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/machinery/vending/hydronutrients{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aUO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_three) +"aUP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aUR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aUS" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aUT" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aUU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/lobby) +"aUV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aUW" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aUX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry" + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Chemistry"; + req_one_access = list(33) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "chemistry"; + layer = 3.1; + name = "Chemistry Shutters" + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + dir = 1; + id = "chemistry"; + name = "Chemistry Shutters"; + pixel_x = -6; + pixel_y = -57; + req_access = list(5) + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aUZ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aVa" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aVb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aVc" = ( +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aVd" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "serviceblock1" + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aVe" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aVf" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry" + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Chemistry"; + req_one_access = list(33) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "chemistry"; + layer = 3.1; + name = "Chemistry Shutters" + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aVg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/packageWrap, +/obj/item/device/mass_spectrometer/adv, +/obj/item/device/mass_spectrometer/adv, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 7; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aVh" = ( +/obj/machinery/chemical_dispenser/full, +/obj/structure/table/reinforced, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aVi" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/item/device/radio/intercom{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aVj" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/chemical_dispenser/biochemistry/full, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aVk" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aVl" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aVn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aVo" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/cups{ + pixel_x = 7; + pixel_y = 13 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aVp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aVq" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aVr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"aVs" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/turf/simulated/open, +/area/maintenance/lower/mining) +"aVt" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Infirmary Lobby" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tether/surfacebase/medical/lobby) +"aVu" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aVv" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aVw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"aVx" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) +"aVy" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aVz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"aVA" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aVB" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aVC" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"aVD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/storage) +"aVE" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aVG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aVH" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/upperhall) +"aVI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/upperhall) +"aVK" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/surface_three_hall) +"aVL" = ( +/obj/machinery/photocopier, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aVN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "surfsurgery2" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/surgery2) +"aVO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aVP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aVQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aVR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aVS" = ( +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler/full{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aVT" = ( +/obj/structure/table/standard, +/obj/item/device/healthanalyzer, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aVU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aVV" = ( +/obj/machinery/account_database{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aVW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"aVX" = ( +/turf/simulated/wall{ + can_open = 1 + }, +/area/tether/surfacebase/surface_three_hall) +"aVY" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aVZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aWa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aWb" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/simulated/wall, +/area/tether/surfacebase/security/upperhall) +"aWd" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aWe" = ( +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/device/radio{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aWf" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aWg" = ( +/obj/structure/sign/directions/evac{ + dir = 8 + }, +/turf/simulated/wall, +/area/tether/surfacebase/medical/lobby) +"aWh" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -4 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = -10 + }, +/turf/simulated/wall, +/area/tether/surfacebase/medical/lobby) +"aWi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"aWj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aWk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"aWl" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aWm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"aWp" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWq" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aWs" = ( +/obj/machinery/suit_cycler/prototype, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"aWt" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWv" = ( +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"aWw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWy" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aWz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atm{ + pixel_y = 31 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aWB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWC" = ( +/turf/simulated/wall, +/area/tether/surfacebase/entertainment/backstage) +"aWD" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -4 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = -10 + }, +/turf/simulated/wall, +/area/tether/surfacebase/entertainment/backstage) +"aWE" = ( +/obj/structure/table/glass, +/obj/machinery/door/window/westright{ + req_one_access = list(35,28) + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hydroponics) +"aWF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aWL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWM" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/grass, +/area/hydroponics) +"aWN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aWR" = ( +/obj/structure/table/standard, +/obj/item/weapon/gun/energy/taser/xeno, +/obj/item/weapon/melee/baton/slime/loaded, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aWS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWV" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aWW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"aWY" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"aWZ" = ( +/obj/machinery/door/airlock/glass_security, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"aXb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"aXc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/button/windowtint{ + id = "surfsurgery2"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"aXd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXf" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/library) +"aXg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXh" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aXi" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aXj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aXk" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -4 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = -10 + }, +/turf/simulated/wall, +/area/library) +"aXl" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/library) +"aXm" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"aXn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXo" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/library) +"aXp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aXw" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/library) +"aXx" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + layer = 1; + name = "Bridge Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"aXy" = ( +/obj/structure/table/standard, +/obj/item/weapon/gun/energy/taser/xeno, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/item/weapon/melee/baton/slime/loaded, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aXz" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aXA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aXB" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + layer = 1; + name = "Bridge Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/bridge) +"aXC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/library) +"aXD" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + layer = 1; + name = "Bridge Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"aXE" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + layer = 1; + name = "Bridge Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/bridge) +"aXF" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aXG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/implantcase/chem, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/weapon/locator, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXK" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXM" = ( +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aXP" = ( +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXS" = ( +/obj/structure/bed/chair/comfy, +/obj/machinery/camera/network/civilian, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"aXT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aXV" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aXW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aXX" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aXY" = ( +/obj/item/device/aicard, +/obj/item/weapon/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/ids, +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aXZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aYa" = ( +/obj/structure/closet, +/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aYb" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"aYd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/random/junk, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aYe" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aYf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYg" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYi" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYl" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/down, +/obj/structure/cable/green{ + d1 = 32; + d2 = 8; + icon_state = "32-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/vacant/vacant_shop) +"aYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYn" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aYo" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYq" = ( +/obj/structure/dogbed, +/mob/living/simple_mob/animal/passive/dog/corgi/Ian, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aYr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Bridge" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYv" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "bridge blast"; + name = "Bridge Blastdoors"; + pixel_x = -6; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYw" = ( +/obj/machinery/photocopier, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYx" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYy" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYz" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYA" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYB" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYC" = ( +/turf/simulated/wall, +/area/tether/surfacebase/entertainment) +"aYD" = ( +/obj/machinery/computer/power_monitor{ + dir = 8; + throwpass = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYE" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYF" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYG" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYH" = ( +/obj/effect/floor_decal/corner/blue/full, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYI" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYJ" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYK" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYL" = ( +/obj/machinery/computer/rcon{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYM" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYN" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/botanystorage) +"aYO" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/commandmaint) +"aYP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYQ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYR" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYT" = ( +/turf/simulated/open, +/area/bridge_hallway) +"aYU" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/bridge_hallway) +"aYV" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aYW" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aYX" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYZ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZb" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/hop, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -10 + }, +/obj/item/weapon/paper/dockingcodes, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZd" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aZh" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZi" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/turf/simulated/open, +/area/maintenance/commandmaint) +"aZj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 8; + pixel_y = -26 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZk" = ( +/obj/structure/closet/wardrobe/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZm" = ( +/obj/item/clothing/glasses/omnihud/all, +/obj/structure/closet/secure_closet/captains, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZn" = ( +/obj/structure/table/reinforced, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 32 + }, +/obj/machinery/recharger, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZo" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZp" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/clothing/glasses/omnihud, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZq" = ( +/obj/structure/closet/secure_closet/hop2, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aZt" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZu" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = list(57) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/hop) +"aZw" = ( +/obj/item/weapon/bedsheet/captain, +/obj/structure/bed/padded, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"aZz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZA" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZB" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZC" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aZE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZF" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/window/basic, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"aZH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"aZI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aZK" = ( +/obj/machinery/sleep_console, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aZL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZM" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"aZN" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Personnel's Office" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZP" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZQ" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"aZR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZT" = ( +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Site Manager's Office"; + req_access = list(20) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZU" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/skills{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/weapon/paper/dockingcodes, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/melee/chainofcommand, +/obj/item/weapon/coin/phoron{ + desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; + name = "limited edition phoron coin" + }, +/obj/item/weapon/folder/blue_captain, +/obj/item/weapon/stamp/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZX" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"aZY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZZ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bab" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bac" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bad" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bae" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"baf" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/mask/gas, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/card/id/gold/captain/spare, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Colony Director's Storage"; + req_access = list(20) + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/item/clothing/head/helmet/space/void/captain, +/obj/item/clothing/suit/space/void/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bag" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bah" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bai" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baj" = ( +/obj/structure/displaycase, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bak" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bal" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bam" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"ban" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bao" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + id = "hop_office"; + layer = 3.3; + pixel_x = 3; + pixel_y = -29 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "hop_office_desk"; + layer = 3.3; + name = "Desk Privacy Shutter"; + pixel_x = 10; + pixel_y = -29 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bap" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baq" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bar" = ( +/obj/machinery/computer/communications, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bas" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bat" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bau" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Captain's Office" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bav" = ( +/obj/machinery/photocopier, +/obj/machinery/firealarm{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bax" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bay" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"baz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"baB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"baC" = ( +/obj/machinery/vending/cola{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"baD" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"baE" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"baF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/door/airlock/freezer{ + name = "Service"; + req_access = list(28) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"baG" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baI" = ( +/obj/machinery/icecream_vat, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"baJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baM" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"baN" = ( +/obj/machinery/papershredder, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baP" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"baQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"baT" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"baU" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baV" = ( +/obj/machinery/computer/card, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baW" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"baX" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"baY" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"baZ" = ( +/obj/random/cutout, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bba" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbb" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/command_guide, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbc" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bbe" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/machinery/vending/loadout/accessory, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bbf" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bbg" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized/full{ + id = "draama"; + name = "Mystery Window" + }, +/obj/structure/window/reinforced/polarized{ + id = "draama"; + name = "Mystery Window" + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "Druma"; + layer = 3.3; + name = "Entertainment Shutters" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "DRAMATIC"; + name = "Dramatic Blast Door" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/entertainment) +"bbh" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bbi" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbj" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbk" = ( +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bbl" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bbm" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bbn" = ( +/obj/structure/sign/directions/evac{ + dir = 1 + }, +/turf/simulated/wall, +/area/tether/surfacebase/entertainment) +"bbo" = ( +/obj/machinery/door/window/westright{ + req_one_access = list(35,28) + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"bbp" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbq" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bbs" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbt" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbu" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbv" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bbw" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbx" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue_hop, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -26 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bby" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bbA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bbC" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbE" = ( +/obj/structure/dogbed, +/obj/structure/curtain/open/bed, +/mob/living/simple_mob/animal/passive/fox/renault, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbG" = ( +/obj/structure/sign/department/sci{ + pixel_x = -32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bbH" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + pixel_y = -22 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbI" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"bbJ" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bbK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bbL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bbM" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bbN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bbP" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bbQ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"bbR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bbS" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bbT" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bbU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bbV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bbW" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"bbY" = ( +/obj/effect/floor_decal/spline/plain, +/obj/item/weapon/stool/padded, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bbZ" = ( +/obj/effect/floor_decal/spline/plain, +/obj/item/weapon/stool/padded, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bca" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bcb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bcc" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bcd" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"bce" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bcf" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/paper{ + desc = ""; + info = "Yes hello, the goat in the freezer is named 'Spike'. Please do not fuck with Spike. He doesn't have the best temper."; + name = "Important notice from Rancher Jim" + }, +/obj/item/weapon/book/manual/chef_recipes, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bcg" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Botany"; + req_one_access = list(35,28) + }, +/obj/machinery/door/window/westright{ + dir = 2; + name = "Kitchen"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bch" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bci" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bcj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/vending/entertainer, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bck" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bcl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bcm" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bcn" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bco" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "DRAMATIC"; + name = "Dramatic Blast Door" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "draama"; + name = "Mystery Window" + }, +/obj/structure/window/reinforced/polarized{ + id = "draama"; + name = "Mystery Window" + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "Druma"; + layer = 3.3; + name = "Entertainment Shutters" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/entertainment) +"bcp" = ( +/obj/machinery/requests_console{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "bar"; + name = "Bar Shutter Control"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bcq" = ( +/obj/structure/table/woodentable, +/obj/machinery/camera/network/outside{ + dir = 9 + }, +/obj/fiftyspawner/cardboard, +/obj/fiftyspawner/plastic, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bcr" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/entertainment/stage) +"bcs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bct" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bcu" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2; + name = "Bar"; + req_access = list(25) + }, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Kitchen"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bcv" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bcw" = ( +/obj/machinery/light, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bcx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bcy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bcz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bcA" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bcB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bcC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bcD" = ( +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bcE" = ( +/obj/structure/closet/crate, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bcF" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"bcG" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bcH" = ( +/obj/machinery/floodlight, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bcI" = ( +/turf/simulated/wall, +/area/tether/surfacebase/entertainment/stage) +"bcJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/entertainment/stage) +"bcK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/entertainment/stage) +"bcL" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/sinpockets, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bcM" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bcN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/mob/living/simple_mob/vore/rabbit/white/lennie, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bcO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bcP" = ( +/obj/structure/table/rack/steel, +/obj/item/pizzavoucher, +/obj/item/weapon/moneybag, +/obj/item/weapon/inflatable_duck, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/item/weapon/gun/projectile/revolver/capgun, +/obj/item/weapon/gun/projectile/revolver/capgun, +/obj/item/toy/cultsword, +/obj/item/toy/cultsword, +/obj/item/weapon/bikehorn/rubberducky, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bcQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bcR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bcS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bcT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bcU" = ( +/obj/structure/table/rack/steel, +/obj/item/mecha_parts/part/durand_left_leg, +/obj/item/weapon/cane/crutch, +/obj/item/weapon/pack/cardemon, +/obj/item/weapon/soap/syndie, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/soap/deluxe, +/obj/item/weapon/staff/gentcane, +/obj/item/toy/crossbow, +/obj/item/toy/eight_ball/conch, +/obj/item/weapon/cell/potato, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/megaphone, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bcV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/rack/steel, +/obj/item/device/instrument/violin, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bcW" = ( +/obj/effect/decal/cleanable/tomato_smudge, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bcX" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bcY" = ( +/obj/effect/landmark/start{ + name = "Entertainer" + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bcZ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/decal/cleanable/tomato_smudge, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bda" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bdb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light_switch{ + name = "House Lights"; + pixel_x = -25 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment) +"bdc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bdd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + frequency = 1532; + name = "Stagehand Speaker"; + pixel_x = 24; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bde" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"bdf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"bdg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bdh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bdi" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"bdj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"bdk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"bdl" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"bdm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + frequency = 1532; + name = "Stagehand Mic"; + pixel_x = -24 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bdn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/mob/living/carbon/human/monkey/punpun, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"bdo" = ( +/obj/effect/decal/cleanable/tomato_smudge, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bdp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + name = "Stage Lights"; + pixel_x = -25 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bdq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bdr" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bds" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bdt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"bdu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"bdv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bdw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bdx" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bdy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bdA" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/tether/surfacebase/barbackmaintenance) +"bdB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"bdC" = ( +/obj/structure/table/bench/standard, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bdD" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/item/device/radio/intercom/entertainment{ + pixel_y = -23 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bdF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bdG" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bdH" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"bdI" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"bdJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bdK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"bdL" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"bdM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bdO" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/packageWrap, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"bdP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bdQ" = ( +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bdR" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bdS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen Cold Room"; + req_access = list(28) + }, +/obj/structure/fans/tiny, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/freezer) +"bdT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bdV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bdZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bea" = ( +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"beb" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/tether/surfacebase/barbackmaintenance) +"bec" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "secreet"; + name = "Tintable Window" + }, +/obj/structure/window/reinforced/polarized{ + id = "secreet"; + name = "Tintable Window" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/barbackmaintenance) +"bed" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Entertainment Backroom"; + req_access = list(72,20,57) + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/entertainment/backstage) +"bee" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/computer/arcade/orion_trail, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bef" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"beg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"beh" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bei" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"bej" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bek" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/requests_console{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + pixel_y = -25 + }, +/obj/machinery/vending/dinnerware{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bel" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"bem" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"ben" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"beo" = ( +/obj/structure/table/gamblingtable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bep" = ( +/obj/structure/table/gamblingtable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"beq" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen Cold Room"; + req_access = list(28) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/fans/tiny, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/crew_quarters/freezer) +"ber" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bes" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bet" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"beu" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bev" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bew" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bex" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 23 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bey" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bez" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"beA" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"beB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"beC" = ( +/obj/structure/table/bench/standard, +/obj/effect/landmark/start{ + name = "Botanist" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"beD" = ( +/obj/machinery/camera/network/civilian, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"beE" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hydroponics) +"beF" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"beG" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"beH" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"beI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"beJ" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"beK" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/hydroponics) +"beL" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"beM" = ( +/obj/machinery/door/window/westright{ + req_one_access = list(35,28) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hydroponics) +"beN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"beO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"beP" = ( +/obj/machinery/gibber, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"beQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"beR" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"beS" = ( +/obj/effect/landmark/start{ + name = "Entertainer" + }, +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"beT" = ( +/obj/structure/frame/computer, +/obj/item/weapon/material/twohanded/baseballbat{ + name = "Swatta" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"beU" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"beV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"beW" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"beX" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"beY" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"beZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bfa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bfb" = ( +/obj/machinery/door/airlock/freezer{ + name = "Service"; + req_one_access = list(35,28) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hydroponics/cafegarden) +"bfc" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bfd" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bfe" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bff" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bfg" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -4 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = -10 + }, +/turf/simulated/wall, +/area/tether/surfacebase/entertainment) +"bfh" = ( +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"bfi" = ( +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"bfj" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/orange{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bfk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bfl" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bfm" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bfn" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bfo" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bfp" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bfq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bfr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bfs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/mob/living/simple_mob/animal/goat{ + name = "Spike" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bft" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"bfu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"bfv" = ( +/obj/structure/closet/crate, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bfw" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bfx" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bfy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bfz" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bfA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"bfB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"bfC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"bfD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bfE" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bfF" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bfG" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bfH" = ( +/obj/machinery/light/small, +/obj/structure/table/woodentable, +/obj/item/weapon/bone/skull{ + name = "Yo'rick" + }, +/obj/item/weapon/paper{ + desc = ""; + info = "The Silence Into Laughter program works to place hard working, studied, accomplished, hardworking, homebrewed, diplomaholding, or otherwise clowns and mimes into the workforce! The Head Clowncellor and the Director at Mime have finally worked together to bring this titan of a workers' union! If you have a background in silence or laughter, please apply at our exonet site at: https://forum.vore-station.net/viewforum.php?f=45"; + name = "Clowns and Mimes Wanted!" + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bfI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/random/cutout, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bfJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bfK" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bfL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/servicebackroom) +"bfM" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"bfN" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"bfO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen"; + req_access = list(28) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bfP" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"bfQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bfR" = ( +/obj/machinery/computer/arcade/battle, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bfS" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bfT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"bfU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bfV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bfW" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"bfX" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bfY" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bfZ" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bga" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"bgb" = ( +/obj/machinery/button/remote/blast_door{ + id = "freezer"; + name = "Freezer Shutter Control"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"bgc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/eris/cafe, +/area/hydroponics) +"bgd" = ( +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bge" = ( +/obj/machinery/requests_console{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bgf" = ( +/obj/structure/noticeboard{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bgg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/backstage) +"bgh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bgi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bgj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/sign/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bgk" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/entertainment/stage) +"bgl" = ( +/obj/structure/table/gamblingtable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bgm" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bgn" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/beakers{ + name = "box of measuring cups"; + pixel_x = 2; + pixel_y = 3; + starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7) + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bgo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/entertainment/stage) +"bgp" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/weapon/book/manual/cook_guide, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bgq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bgr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/appliance/cooker/grill, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bgs" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/packageWrap, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bgt" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/closet/chefcloset, +/obj/item/glass_jar, +/obj/item/device/retail_scanner/civilian, +/obj/item/weapon/soap/nanotrasen, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bgu" = ( +/obj/structure/bed/chair, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"bgv" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Entertainer" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bgw" = ( +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bgx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bgy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"bgz" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/obj/item/weapon/book/manual/bar_guide, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bgA" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25; + target_temperature = 270 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bgB" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) +"bgC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bgD" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bgE" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/item/weapon/stool/padded, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bgF" = ( +/obj/structure/flora/pottedplant, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bgG" = ( +/obj/structure/table/gamblingtable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/tether/surfacebase/barbackmaintenance) +"bgH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "secreet"; + name = "Tintable Window" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "secreet"; + name = "Tintable Window" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/barbackmaintenance) +"bgI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/servicebackroom) +"bgJ" = ( +/obj/machinery/door/airlock{ + id_tag = "barbackdoor"; + name = "Service"; + req_access = list(25) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/bar_backroom) +"bgK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + name = "Auditorium" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/entertainment) +"bgL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + name = "Entertainment Backroom"; + req_one_access = list(72,20,57) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/lino, +/area/tether/surfacebase/entertainment/stage) +"bgM" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"bgN" = ( +/obj/machinery/door/airlock/silver{ + name = "Auditorium" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/entertainment) +"bgO" = ( +/obj/structure/table/woodentable, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"bgP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Bar Substation" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"bgQ" = ( +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access = list(25) + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/lino, +/area/tether/surfacebase/bar_backroom) +"bgR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/barrestroom) +"bgS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) +"bgT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "secreet"; + name = "Tintable Window" + }, +/obj/structure/window/reinforced/polarized{ + id = "secreet"; + name = "Tintable Window" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "secreet"; + name = "Tintable Window" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/barbackmaintenance) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"bha" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/camera/network/research/xenobio{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"bhe" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/camera/network/research/xenobio{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"bhf" = ( +/obj/structure/table/standard, +/obj/item/device/slime_scanner, +/obj/item/device/slime_scanner, +/obj/item/device/multitool, +/obj/machinery/camera/network/research/xenobio{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"bhg" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"bhh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Long-Range Teleporter Access" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/southhall) +"bhi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhk" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/device/radio/off, +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/item/device/taperecorder{ + pixel_x = 10 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"bhl" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/southhall) +"bhm" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/southhall) +"bhn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"bhp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhq" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhr" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/southhall) +"bhs" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/southhall) +"bht" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhu" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bhv" = ( +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhw" = ( +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhy" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/southhall) +"bhz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhB" = ( +/obj/structure/dogbed, +/mob/living/simple_mob/animal/sif/shantak/scruffy, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"bhC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhE" = ( +/turf/simulated/wall, +/area/tether/surfacebase/topairlock) +"bhF" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/random/maintenance/clean, +/obj/item/clothing/mask/gas, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"bhG" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"bhH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhI" = ( +/turf/simulated/open, +/area/tether/surfacebase/southhall) +"bhJ" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"bhK" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/southhall) +"bhN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"bhO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"bhP" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"bhQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"bhR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"bhT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/tether/surfacebase/topairlock) +"bhU" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "southciv_airlock_scrubber" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/topairlock) +"bhV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/orange{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "southciv_airlock_scrubber" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/topairlock) +"bhW" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bhX" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/topairlock) +"bhY" = ( +/obj/structure/railing, +/obj/structure/grille, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "southciv_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bhZ" = ( +/obj/structure/railing, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/grille, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "southciv_airlock_pump" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bia" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/civilian, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"bib" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/vending/wallmed_airlock{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"bic" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"bid" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"bie" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "southciv_airlock_outer"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/topairlock) +"bif" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"big" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bih" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "southciv_airlock_inner"; + locked = 1 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "southciv_airlock"; + pixel_x = 8; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/topairlock) +"bii" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bij" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bik" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/topairlock) +"bil" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bim" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bin" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bio" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "southciv_airlock"; + pixel_x = -8; + pixel_y = -25 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "southciv_airlock_outer"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/topairlock) +"bip" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"biq" = ( +/obj/machinery/embedded_controller/radio/airlock/phoron{ + dir = 8; + id_tag = "southciv_airlock"; + pixel_x = 25; + pixel_y = -30 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/airlock_sensor/phoron{ + id_tag = "southciv_airlock_sensor"; + pixel_x = 25; + pixel_y = -40 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bir" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "southciv_airlock_inner"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/topairlock) +"bis" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bit" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"biu" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Surface EVA" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/topairlock) +"biv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"biw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"bix" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Surface EVA" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/topairlock) +"biy" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/topairlock) +"biz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "southciv_airlock_scrubber" + }, +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/topairlock) +"biA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "southciv_airlock_scrubber" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/topairlock) +"biB" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"biC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"biD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"biE" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = -24 + }, +/obj/structure/cable/orange, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"biF" = ( +/turf/simulated/wall, +/area/tether/surfacebase/cafeteria) +"biG" = ( +/obj/machinery/door/airlock/glass{ + name = "Cafeteria" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biH" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cafeteria) +"biI" = ( +/obj/machinery/door/airlock/glass{ + name = "Cafeteria" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biJ" = ( +/obj/machinery/door/airlock{ + name = "Decontamination" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"biK" = ( +/obj/machinery/door/airlock{ + name = "Decontamination" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"biL" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biN" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biO" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's set to Free-Anur-Entertanment, I wonder what else is on?"; + icon_state = "frame"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biP" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/orange{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biQ" = ( +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biR" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"biS" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"biT" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"biU" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"biZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bja" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bje" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"bjf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"bjg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"bjh" = ( +/obj/machinery/vending/fitness{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bji" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjj" = ( +/obj/structure/table/bench/sifwooden/padded, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjk" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjl" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/topairlock) +"bjm" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"bjn" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/topairlock) +"bjo" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjp" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjq" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjr" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjs" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjt" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; + icon_state = "frame"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bju" = ( +/obj/item/device/radio/intercom/entertainment{ + pixel_y = -23 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjv" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bjw" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cafeteria) +"bjx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"bjy" = ( +/obj/item/device/healthanalyzer, +/obj/item/bodybag/cryobag, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"bjB" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/obj/item/device/sleevemate, +/obj/item/weapon/storage/box/nifsofts_medical{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/weapon/storage/box/nifsofts_medical{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/device/flashlight{ + pixel_x = 6; + pixel_y = 31 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"bjH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bjI" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/medical/triage) +"bjJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"bjO" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/door/window/brigdoor/southright{ + req_access = list(); + req_one_access = list(5,24) + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bjT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"bjU" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper{ + desc = ""; + info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing."; + name = "Body Designer Note" + }, +/obj/item/device/sleevemate, +/obj/item/weapon/storage/box/body_record_disk, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"bjY" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"bjZ" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/medical_stand, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery2) +"bkc" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"bkd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"bke" = ( +/obj/machinery/computer/transhuman/designer{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"bkk" = ( +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bko" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"bkp" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"bkq" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"bkr" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/paper{ + desc = ""; + info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management"; + name = "note to science staff" + }, +/obj/item/device/robotanalyzer, +/obj/item/device/robotanalyzer, +/obj/machinery/button/windowtint{ + id = "robo_surg_1"; + pixel_y = 25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"bks" = ( +/obj/structure/window/reinforced/polarized/full{ + id = "robo_surg_1" + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"bkt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"bku" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"bkv" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"bkw" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized/full{ + id = "robo_resleeving" + }, +/turf/simulated/floor/plating, +/area/rnd/robotics/resleeving) +"bkx" = ( +/obj/machinery/alarm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bky" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/button/windowtint{ + id = "robo_resleeving"; + pixel_x = 10; + pixel_y = 22 + }, +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bkz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bkA" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bkB" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled/dark, +/area/rnd/robotics/resleeving) +"bkC" = ( +/turf/simulated/wall, +/area/rnd/robotics/resleeving) +"bkE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"bkF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"bkG" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Surgery Room"; + req_one_access = list(29,47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"bkH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"bkI" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Resleeving Room"; + req_one_access = list(29,47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bkJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bkK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bkL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bkM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bkN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "tourbus_windows"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/general) +"bkO" = ( +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled/dark, +/area/rnd/robotics/resleeving) +"bkP" = ( +/obj/structure/closet/secure_closet/medical_wall/anesthetics{ + pixel_x = -32; + req_access = list(); + req_one_access = list(29,45) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"bkQ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"bkR" = ( +/obj/structure/table/standard, +/obj/item/device/defib_kit/jumper_kit, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = -1; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"bkS" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/manual/robotics_cyborgs, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"bkT" = ( +/obj/structure/table/standard, +/obj/item/device/mmi, +/obj/item/device/mmi/digital/posibrain, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"bkU" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"bkV" = ( +/obj/structure/table/standard, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"bkW" = ( +/obj/structure/table/standard, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"bkX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bkY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bkZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/manual/resleeving, +/obj/item/weapon/storage/box/backup_kit, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"bla" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"blb" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) +"blc" = ( +/obj/structure/window/reinforced/polarized/full{ + id = "robo_surg_1" + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + id = "robo_surg_1" + }, +/turf/simulated/floor/plating, +/area/rnd/robotics/surgeryroom1) +"bld" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/rnd/robotics) +"ble" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized/full{ + id = "robo_resleeving" + }, +/obj/structure/window/reinforced/polarized{ + id = "robo_resleeving" + }, +/turf/simulated/floor/plating, +/area/rnd/robotics/resleeving) +"blf" = ( +/obj/structure/window/reinforced/polarized/full{ + id = "robo_resleeving" + }, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + id = "robo_resleeving" + }, +/turf/simulated/floor/plating, +/area/rnd/robotics/resleeving) +"blm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bln" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blq" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/surgery1) +"blr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"blt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blu" = ( +/obj/structure/table/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"blw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blA" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blB" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blC" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/random/medical, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blG" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical2, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"blH" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/item/device/defib_kit/loaded, +/obj/item/stack/nanopaste, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"blK" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blM" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"blN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"blP" = ( +/obj/structure/table/standard, +/obj/item/device/glasses_kit, +/obj/item/weapon/storage/box/rxglasses, +/obj/item/weapon/storage/box/rxglasses, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"blR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blS" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"blU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"blV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"blZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"bmc" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmg" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"bmk" = ( +/obj/structure/closet/crate{ + icon_state = "crate"; + name = "Grenade Crate" + }, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/weapon/tool/screwdriver, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/item/weapon/gun/launcher/syringe, +/obj/item/weapon/storage/box/syringegun, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"bml" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/machinery/recharger, +/obj/item/weapon/storage/box/syringegun, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"bmm" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmo" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"bmp" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"bmq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmr" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bms" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmt" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/upperhall) +"bmu" = ( +/obj/structure/table/glass, +/obj/random/medical, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmx" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"bmy" = ( +/obj/structure/medical_stand, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"bmz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmC" = ( +/obj/machinery/optable, +/obj/machinery/oxygen_pump/anesthetic{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"bmE" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = null; + name = "Medbay Storage"; + req_access = list(5); + req_one_access = list(5) + }, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"bmG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmI" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmM" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/item/device/defib_kit/loaded, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmN" = ( +/obj/machinery/door/airlock/maintenance/medical{ + name = "Medical Maintenance Access"; + req_access = list(5) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/medical/triage) +"bmP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bmY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bnc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"bng" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"bnj" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bnk" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bnn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bno" = ( +/obj/item/device/sleevemate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"bnq" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"bnu" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"bnz" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/smartfridge/chemistry, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/chemistry) +"bnF" = ( +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + dir = 1; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + pixel_x = -25; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bnG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"bnI" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Chemistry"; + req_one_access = list(33) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/headset/headset_med, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/obj/structure/closet/wardrobe/chemistry_white, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/closet/secure_closet/medical1, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnN" = ( +/obj/machinery/chem_master, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnS" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnU" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Chemistry"; + req_one_access = list(33) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"bnX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + req_access = list(5) + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"bnY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 9 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 2 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -5 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -12 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"bod" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"boe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bof" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bog" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"boh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bol" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bom" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bon" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"boo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bop" = ( +/obj/structure/sign/department/medbay{ + pixel_x = -32 + }, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/multi_tile/glass/polarized{ + id_tag = "MedbayFoyer"; + id_tint = "medbayfoyer"; + name = "Medbay Airlock"; + req_one_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"bou" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"bov" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"bow" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"box" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"boy" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "iaar" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"boA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "iaar" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"boB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "iaar" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"boC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "iaar" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"bpw" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder/red, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"bqs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bqw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/requests_console/preset/hos{ + dir = 4; + pixel_x = -54 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"bsa" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bsb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bsr" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"bxa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"bzK" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"bEd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bJV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell B" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/upperhall) +"bKS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"bMK" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"bSe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"bTC" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"bUM" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"bUT" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/internalaffairs, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"caw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1380; + id_tag = "tourbus_right" + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/simple, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "tourbus_windows"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/tourbus/general) +"cbn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"cbM" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/closet/walllocker_double{ + dir = 8; + pixel_x = -28 + }, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/taperecorder, +/obj/item/device/tape/random, +/obj/item/device/tape/random, +/obj/item/weapon/storage/secure/briefcase, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"cdv" = ( +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"ceN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"cmQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"cnN" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"cnO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"cnZ" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"cpd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"crh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"csd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"cwI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"cAG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/library) +"cEx" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/internalaffairs, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"cFA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"cGs" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"cGt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"cHf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"cJL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"cMO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "iaal" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"cRi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"cSl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/library) +"cSL" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"cVg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/button/windowtint/multitint{ + id = "sec_processing"; + pixel_x = 26; + pixel_y = 6; + req_access = list(1) + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"cWe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"cWU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"cYm" = ( +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"daN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"dbk" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "mechbay"; + name = "Mech Bay" + }, +/obj/machinery/button/remote/blast_door{ + id = "mechbay-inner"; + name = "Mech Bay"; + pixel_x = 27; + pixel_y = -5; + req_access = list(29,47); + req_one_access = list(47) + }, +/obj/machinery/button/remote/blast_door{ + id = "mechbay"; + name = "Mech Bay"; + pixel_x = 27; + pixel_y = 6; + req_access = list(29,47); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/mechbay) +"ddl" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/orange{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"ddn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "tourbus_windows"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/cockpit) +"dgA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"dlX" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"dmH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"drR" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"dsF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"dyV" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"dDQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Chemistry"; + sortType = "Chemistry" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"dFg" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/hos) +"dGZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"dJm" = ( +/obj/machinery/door/airlock/glass{ + req_one_access = list(19,43,67) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/tourbus/cockpit) +"dKj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"dMk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"dSQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"dVE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"dVW" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"dVZ" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/permit/gun{ + desc = "An example of a card indicating that the owner is allowed to carry a firearm. There's a note saying to fax CentCom if you want to order more blank permits."; + name = "sample weapon permit"; + owner = 1 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/multi, +/obj/item/device/megaphone, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"dXv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"eeD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"efc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"efR" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"ehr" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"eiO" = ( +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"ely" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"erS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lime/bordercorner2, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"exM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"eCG" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) +"eCP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"eEW" = ( +/obj/machinery/door/airlock{ + name = "Internal Affairs"; + req_access = list(38) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"eFg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"eGv" = ( +/obj/structure/fuel_port{ + pixel_x = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/steel/danger, +/area/shuttle/tourbus/general) +"eHk" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 29 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"eHY" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/shuttle_pad) +"eIs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"eJm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"eQN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"faL" = ( +/obj/structure/lattice, +/obj/structure/cable/orange{ + d1 = 32; + icon_state = "32-1" + }, +/turf/simulated/open, +/area/tether/surfacebase/southhall) +"fcg" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"feu" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"fgW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"fkn" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"fru" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "tourbus_docker"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/bed/chair/bay/chair{ + dir = 8 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"fxh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Recreation Area" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/recreation_area) +"fyZ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"fzy" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/iaa/officecommon) +"fGm" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Briefing Room"; + req_access = newlist(); + req_one_access = list(1,38) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"fKo" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"fLx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/wall, +/area/tether/surfacebase/medical/storage) +"fNA" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"fOj" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "HoP Office"; + sortType = "HoP Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"fYr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/engines) +"gae" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"geQ" = ( +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"gfg" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"ghf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"ghk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"ghW" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"giR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"gnE" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"gtn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"gtp" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"gvp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 22; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"gym" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 25 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"gzd" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"gAF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"gHh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/wall/shull, +/area/shuttle/tourbus/general) +"gLd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"gLg" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/holoposter{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"gRG" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"gSr" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/orange, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"gTL" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"gTN" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"gUL" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8 + }, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"gVg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"gYa" = ( +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"gZn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"gZR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"haS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Public Garden" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"heL" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery1) +"hfN" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"hgf" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_hallway) +"hlF" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) +"hmT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"hoQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"hqs" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"hth" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"hxc" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lime/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"hxR" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"hxY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"hCr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"hCz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/hatch{ + req_one_access = list() + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"hCB" = ( +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/bay/chair{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"hEt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"hEN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/library) +"hGm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"hId" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"hIu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"hJt" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/holoposter{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"hLd" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"hQl" = ( +/obj/machinery/newscaster{ + pixel_y = -29 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"hVc" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Security" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"ieb" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "tourbus_pad"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"ieo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ieE" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"ifI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"iiv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"ikh" = ( +/obj/machinery/vending/sovietsoda{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"ioG" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"iqb" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/closet/emergsuit_wall{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"isl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"itr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/upperhall) +"ivq" = ( +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) +"ixw" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/codex, +/obj/random/cigarettes, +/obj/item/weapon/deck/cards, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"iFr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"iHX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"iLq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/wall, +/area/tether/surfacebase/medical/storage) +"iLF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/briefingroom) +"iLR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"iOL" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppernorthstairwell{ + name = "\improper North Medical Stairwell" + }) +"iQr" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"iRX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"iUu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/wall, +/area/tether/surfacebase/medical/storage) +"iXM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"jmQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"jpB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/shull, +/area/shuttle/tourbus/general) +"jrn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"juj" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"jvK" = ( +/turf/simulated/wall/shull, +/area/shuttle/tourbus/cockpit) +"jAt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/mauve/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"jBt" = ( +/turf/simulated/wall, +/area/teleporter/departing) +"jBB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"jCn" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"jCE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/southhall) +"jFq" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder{ + pixel_x = -4 + }, +/obj/item/weapon/folder/blue{ + pixel_x = 5 + }, +/obj/item/weapon/folder/red{ + pixel_y = 3 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/clipboard, +/obj/item/weapon/storage/briefcase{ + pixel_x = -2; + pixel_y = -5 + }, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"jFz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"jGK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"jHw" = ( +/turf/simulated/wall/shull, +/area/shuttle/tourbus/general) +"jJd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"jKY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"jML" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external{ + icon_state = "door_locked"; + id_tag = "tourbus_left"; + locked = 1; + req_one_access = list() + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "tourbus_left"; + name = "hatch bolt control"; + pixel_y = 30; + req_one_access = list(19,43,67); + specialfunctions = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "tourbus_windows"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/tourbus/general) +"jPW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"jRO" = ( +/obj/effect/floor_decal/spline/plain, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/bar) +"jSV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"jYd" = ( +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/shuttle_pad) +"jYD" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/iaa/officeb) +"jZe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"kcC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"kdx" = ( +/obj/structure/table/standard, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "tourbus_windows"; + name = "window blast shields" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) +"keg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"keV" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"keX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"kiw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"kjn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"kkW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"kmK" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"kmS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"knU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"kqo" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/iaa/officea) +"ksL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"kun" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"kuQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"kuU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"kwO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/upperhall) +"kyC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"kBF" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/door/window/southleft{ + dir = 1; + req_one_access = list(19,43,67) + }, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/shuttle/tourbus/engines) +"kCW" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"kFJ" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"kGd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "iaal" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"kQb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"kRa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"kSJ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"kTn" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"kUh" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"kXo" = ( +/obj/structure/noticeboard{ + pixel_y = -26 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"laB" = ( +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"lcS" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"lgb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security"; + req_access = list(58) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"lgo" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Weapons Testing Range"; + req_access = list(47) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"llH" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"lmq" = ( +/obj/machinery/computer/general_air_control/fuel_injection{ + device_tag = "riot_inject"; + dir = 8; + frequency = 1442; + name = "Riot Control Console" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"lpg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"lpB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"lqE" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"lqJ" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 4; + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"lqX" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/crew_quarters/recreation_area) +"lvH" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"lwp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"lxa" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet, +/area/library) +"lzq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"lAW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"lCq" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/cockpit) +"lFc" = ( +/obj/effect/floor_decal/rust/part_rusted1, +/obj/machinery/atmospherics/binary/pump, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"lFG" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"lIe" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"lMj" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/oxygen, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Protosuit Storage"; + req_access = list(58) + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/security/prototype, +/obj/item/clothing/head/helmet/space/void/security/prototype, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"lSv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"lWE" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/hos) +"lWN" = ( +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"lXo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"lXv" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"lYT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"mdE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"mel" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"mjs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atm{ + pixel_y = 31 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"mjT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"mwz" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"myZ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"mBz" = ( +/obj/structure/closet/lawcloset, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"mDf" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"mFq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"mFy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"mMS" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"mOt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"mUE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"mWk" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"mWX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"mXo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/library) +"mXu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"mYT" = ( +/obj/machinery/computer/cryopod/gateway{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"nbM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"nfl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ngL" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder/red, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"nlf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"nnY" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"nue" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"nuu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"nyy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"nJe" = ( +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"nKy" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"nLw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"nLX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"nQA" = ( +/obj/machinery/camera/network/security{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"nSq" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"nXZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"oat" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"oav" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "iaal" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"obl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"olG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"ooI" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"ooM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/shuttle_pad) +"opE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"orc" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"orP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"oAu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"oCC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"oEh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/upperhall) +"oEj" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"oEL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"oII" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"oIJ" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"oJw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/wall, +/area/tether/surfacebase/medical/storage) +"oKw" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"oLR" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) +"oMh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"oMK" = ( +/obj/machinery/atmospherics/unary/engine, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"oOD" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "iaar" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/iaa/officeb) +"oPm" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"oPG" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"oSv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"oUI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"oWt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/southhall) +"oWD" = ( +/obj/effect/landmark{ + name = "JoinLateGateway" + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"oXx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 25 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"oZC" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/donut, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"pcs" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"peS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"pgi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"ple" = ( +/obj/structure/sign/fire{ + name = "\improper PHORON/FIRE SHELTER"; + pixel_x = 33 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"pnq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"pph" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "iaal" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"prD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"psO" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"puE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"pwF" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) +"pAh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"pCb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"pCv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"pHl" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder/red, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"pIB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"pJL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"pNk" = ( +/obj/machinery/computer/shuttle_control/explore/tourbus, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) +"pOZ" = ( +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"pPe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"pPs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 20 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_main) +"pPQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"pSu" = ( +/obj/machinery/door/airlock/glass{ + name = "Cafeteria" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"qbo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"qda" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"qem" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"qfz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/library) +"qgM" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/tether/surfacebase/surface_three_hall) +"qkf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + name = "Research"; + sortType = "Research" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"qnv" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"qom" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "tourbus_windows"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/shuttle/tourbus/engines) +"qoL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"qqP" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa) +"qqV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/crew_quarters/recreation_area) +"qtt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"qvp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"qwm" = ( +/turf/simulated/wall/shull, +/area/shuttle/tourbus/engines) +"qze" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"qzU" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"qAt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"qDF" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/southhall) +"qGK" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"qIb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"qKO" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"qQZ" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"qTm" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +"qVj" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"qWU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/wall/shull, +/area/shuttle/tourbus/engines) +"qXD" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/button/windowtint{ + id = "hos_office"; + pixel_x = -32; + pixel_y = -25; + req_access = list(58) + }, +/obj/machinery/button/remote/airlock{ + id = "HoSdoor"; + name = "Office Door"; + pixel_x = -26; + pixel_y = -22 + }, +/obj/machinery/button/remote/blast_door{ + id = "surfbriglockdown"; + name = "Brig Lockdown"; + pixel_x = -26; + pixel_y = -33; + req_access = list(2) + }, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = -36; + pixel_y = -34 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"rbR" = ( +/obj/structure/cable/orange{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"rnn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"rnG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"rrG" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/folder/red, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"ruh" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) +"rxh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"rzV" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"rAe" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"rBz" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"rCt" = ( +/obj/structure/closet/lawcloset, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"rEZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"rJT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"rMS" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"rPu" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"rQp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"rWd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"rWx" = ( +/obj/structure/grille, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "sec_processing" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/processing) +"rXW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"rYy" = ( +/obj/structure/window/basic/full, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/outpost/xenobiology/outpost_storage) +"shx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/upperhall) +"sla" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"snE" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"soG" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"sts" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/foodcart, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"suT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"syw" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"sDq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"sDG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"sEq" = ( +/obj/machinery/door_timer/cell_3{ + id = "Cell B"; + name = "Cell B"; + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"sFW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"sGV" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/machinery/door/window/southright{ + dir = 1; + req_one_access = list(19,43,67) + }, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/shuttle/tourbus/engines) +"sJv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"sLa" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"sPd" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Bar" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor, +/area/crew_quarters/bar) +"sSK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"sSW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"sTM" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/skills{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"sWs" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Medical Department"; + departmentType = 3; + name = "Medical RC"; + pixel_x = -30 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"sWR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"sXa" = ( +/obj/machinery/holoposter{ + pixel_x = -30; + pixel_y = 30 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) +"sXR" = ( +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"tcW" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tether/surfacebase/shuttle_pad; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "tourbus_pad"; + landmark_tag = "tourbus_dock"; + name = "Tourbus Pad" + }, +/obj/effect/overmap/visitable/ship/landable/tourbus, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"tit" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"tki" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"tkB" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"tqY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"trA" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/bed/chair, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ttH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"txo" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"txO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"tyN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"tLk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + id = "iaar"; + pixel_x = -25; + pixel_y = 7 + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"tLv" = ( +/obj/machinery/power/smes/buildable{ + charge = 500000 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/shuttle/tourbus/engines) +"tPE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/codex, +/obj/item/weapon/book/manual/security_space_law, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"tRg" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"tRk" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"tWn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"tXj" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"tYE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"uaN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"udd" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"ueB" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/hos) +"ueU" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"uhm" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"uiJ" = ( +/obj/machinery/chemical_dispenser/full, +/obj/structure/table/reinforced, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"und" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell A" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/upperhall) +"upV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"uxT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"uyz" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"uAI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"uFI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"uIY" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"uNt" = ( +/turf/simulated/open, +/area/tether/surfacebase/security/upperhall) +"uOL" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/device/defib_kit/loaded, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"uQt" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"uSA" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tether/surfacebase/shuttle_pad; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "tether_pad_airlock"; + landmark_tag = "tether_backup_low"; + name = "Surface Hangar" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/tether) +"uWw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "surfsurgery2" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/surgery2) +"uYO" = ( +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/shuttle_pad) +"viF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"vkv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"vna" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"vnS" = ( +/obj/machinery/chemical_dispenser/full, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"vop" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/pen/blade/red{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"voF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"vqv" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/upperhall) +"vrU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) +"vtN" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"vun" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"vvA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"vzs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"vEm" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/bookcase, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/command_guide, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"vEJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"vFm" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/hos) +"vIh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"vIA" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"vJA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"vKm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"vLM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"vTf" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"vWL" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"vYr" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/southhall) +"way" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/computer/shuttle_control/tether_backup{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"waR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"wer" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"weK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"whW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/tether/surfacebase/security/briefingroom) +"wju" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"wlf" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/security/breakroom) +"wng" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/upperhall) +"wob" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder{ + pixel_x = -4 + }, +/obj/item/weapon/folder/blue{ + pixel_x = 5 + }, +/obj/item/weapon/folder/red{ + pixel_y = 3 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/clipboard, +/obj/item/weapon/storage/briefcase{ + pixel_x = -2; + pixel_y = -5 + }, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"woN" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "iaal" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/iaa/officea) +"woZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Look's like it's set to the info station... I wonder what else is on?"; + icon_state = "frame"; + pixel_x = 32; + pixel_y = -64 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"wrA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"wtd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"wur" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"wyi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "tourbus_windows"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/general) +"wBv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"wIw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"wKZ" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/structure/bed/chair/office/light, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"wPB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"wPD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"wPV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/red_hos, +/obj/item/weapon/stamp/hos, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/security/hos) +"wQf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/cable/orange, +/obj/structure/bed/chair/bay/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"wQs" = ( +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"wWo" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"wXr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"xaU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/iaa/officecommon) +"xdM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"xku" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/shuttle_pad) +"xkx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"xlW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"xmK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"xog" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"xpJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"xsf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) +"xud" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"xvN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"xxe" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"xxB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +"xBf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"xEB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"xGw" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/closet/walllocker_double{ + dir = 4; + pixel_x = 28 + }, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/taperecorder, +/obj/item/device/tape/random, +/obj/item/device/tape/random, +/obj/item/weapon/storage/secure/briefcase, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"xHg" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/bookcase, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/command_guide, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"xIO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"xOa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"xQv" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/red_hos, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) +"xQG" = ( +/obj/machinery/door/airlock{ + name = "Internal Affairs"; + req_access = list(38) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officea) +"xUo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"xXf" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/light/small, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/cockpit) +"xXZ" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/tether/surfacebase/security/upperhall) +"xZw" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/flora/pottedplant/unusual, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/admin) +"ycf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"yet" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"yfW" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blade/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/pen/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/iaa/officeb) +"yhU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/hos) +"yir" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Long-Range Teleporter Access" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/southhall) + +(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 +"} +(2,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(3,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(4,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(5,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(6,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(7,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(8,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(9,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(10,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(11,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(12,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(13,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(14,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(15,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(16,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(17,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(18,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(19,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(20,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aab +aac +aac +aab +aab +aab +aab +aab +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(21,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(22,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(23,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(24,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adH +ael +aeX +aeX +agt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(25,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adI +aem +aab +aab +agu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(26,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adJ +aen +aeY +aeY +agv +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(27,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(28,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(29,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aSu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(30,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(31,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +aQD +adG +adG +adG +adG +adG +adG +adG +adG +aQD +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(32,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +arW +aDq +aDq +aDq +aDq +arW +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +aOR +aPv +aPv +aPv +aPv +aPv +aPv +aPv +aPv +aRa +aRa +aRa +aRa +aRa +aSj +aSj +aSA +aSA +aSA +aSA +aSA +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(33,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCZ +arW +aDa +aDa +aDa +aDL +arW +aDQ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +aOR +aDU +aPw +aPN +aQb +aQl +aQx +aQH +aMn +aRa +aOV +aPf +aNd +aRa +iRX +kTn +aSA +aQR +aTa +aRY +aSA +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(34,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCZ +aDc +aiq +sXa +aDe +aDe +aDe +aiF +aDc +aDQ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +aOR +aBT +aPx +aPO +aPO +aPO +aQy +aQI +aQS +aRa +bgX +aRu +aRI +aRO +eFg +bKS +aSD +aSQ +aTf +aZf +aTx +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(35,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aCZ +aDc +aDf +aDe +aDj +aDr +aDr +aDA +aDe +aDf +aDc +aDQ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aMG +aMG +aOn +adG +aOR +aPg +aPy +aPO +aTA +aPO +aQy +aQJ +aPO +aRb +aRi +aRg +aRi +aRP +aRZ +aJy +aKz +aLi +aWy +aXF +aSA +adG +aOs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(36,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +arW +arW +aDd +aDf +aDj +ajt +aDu +aDu +aDR +aDA +aDf +aDT +arW +arW +aVz +aVz +aVz +agw +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aMG +aMG +aMG +aMG +aMG +aNU +adG +adG +aQD +adG +aOR +aPh +aPz +aPO +aPO +aQm +aQz +aQK +aQT +aRa +aRH +aRj +aRv +aRa +aSa +aJz +aKA +aLk +aZK +aWQ +aTx +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(37,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aCY +aDa +aDe +aDj +ajt +aDg +aDB +aDG +aDg +aDR +aVr +aDe +aVx +aDc +aip +aVK +akl +alP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaq +adG +adG +adG +adG +adG +adG +adG +aOf +aOf +aOf +aOf +aOf +aMm +aPO +aQc +aQo +aQL +aXz +aAk +aRa +aMM +aRx +aPA +aRa +aMK +aMq +aSB +aPV +bhe +aXA +aSA +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(38,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDe +aDe +aDn +aju +aDi +aDs +aDs +aUw +aVb +iiv +tqY +tqY +haS +xpJ +orP +aVQ +alP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +alH +alH +alH +aGL +aHE +acj +acj +aHE +acj +acj +aHE +aGL +acj +aHE +acj +acj +aHE +acj +aNV +aNZ +aOf +aOo +aHM +aDo +aOf +aOR +aPP +aOR +aQq +aOR +aOR +aOR +aRa +aRl +aRy +aRa +aRQ +aSc +aSd +aCO +aCO +aCO +aCO +aCO +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(39,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDa +aDe +aDh +akm +aDk +aDs +aDs +aUz +hxc +erS +aDe +aDe +aDc +aVA +sDG +akn +alP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +sLa +aCc +aCc +drR +aCc +aIp +aIW +aCc +hJt +aBV +aCc +aCc +aIW +aCc +aMi +aCc +aCc +aBu +aNS +aEt +aGo +aOp +aOp +aOp +aIr +aIX +aPd +aQe +aQA +aQB +aQM +aEw +aMo +aQM +aRz +aPQ +aRR +aJA +aSg +aLR +aOh +aLM +aMl +aNR +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(40,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +arW +arW +aDd +aDf +aDm +aDl +aDt +rEZ +dgA +cwI +aDf +aDT +arW +arW +aVE +aWF +akn +alP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +asd +dVE +cWe +hgf +aVp +aVp +aVp +aIY +aVp +aHF +aJC +aLN +aJx +aVp +aVp +aVp +aVp +aJE +aOD +aEy +aPj +aKB +aOE +aLj +aPj +aIZ +aPo +aQn +aRc +aQC +aQC +aQC +aQC +aPR +aRo +aQC +aRS +aSe +bha +aSr +aBf +aMl +aMl +aNR +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(41,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aDb +aDc +aDf +aDn +aDg +aDu +aDD +aDg +aDN +aDf +aDc +aDz +agw +air +aWF +akn +alP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +aoW +aCm +awh +aGM +aNn +aAt +aJB +aNn +aAO +asf +aNn +aNn +aul +aNn +aMH +aNc +aNn +aNA +aOr +aEt +aGs +aKC +aOp +aMj +aIs +aJa +aQQ +ayw +aQr +aPS +aQM +aQM +aMp +aQM +aQp +aPS +aRR +aJD +aSs +aEs +aLQ +aNQ +aMl +aNR +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(42,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aDb +aDc +acm +aDv +aDg +aDJ +aUC +aDO +aDc +aDS +aac +agw +air +aWF +akn +akS +alw +alw +alw +akS +akS +akS +alw +alw +alw +akS +akS +akS +arU +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqw +aFL +aBK +aiE +aNL +acj +acj +aNL +acj +acj +aNL +acj +acj +aNL +acj +acj +aNL +acj +aNV +aNZ +aOf +auz +aTD +aHU +aOf +aPE +aPT +aOW +aQs +aOW +aOW +aOW +aRe +aRn +aRB +aRe +aRT +aSc +aSt +aCO +aCO +aCO +aCO +aCO +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(43,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aDb +arW +aDw +aDg +aDJ +aUF +arW +aDS +aac +aac +agw +air +aWF +akn +akS +alx +amm +amM +anv +anZ +aoq +amM +apm +amM +aqr +arc +arv +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqA +aqz +aFp +aGN +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +adG +aOf +aOf +aOf +aOf +aOf +aPB +aPU +aQg +aQt +azr +aQN +aQV +aRe +aNT +aRC +aML +aRe +aMK +aSv +aSI +aRk +aBa +aRw +aSI +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(44,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDx +aDE +aDK +aUM +aDP +aac +aac +aac +agw +aVG +aWF +aTO +akS +aly +amn +amN +amN +amN +amN +amN +apn +apI +apI +ard +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqC +aBQ +aFJ +aGP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +aNB +aNM +aNM +aNW +adG +adG +aRh +adG +aOW +aEf +aPG +aJb +aQh +aQu +aQE +aQO +aFF +aRe +aMJ +aRD +aRL +aRe +aSa +aSv +aSJ +aSW +aTi +aWR +aSI +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(45,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDy +aDF +aDH +aUO +aDP +aac +agw +agw +agw +air +aWF +akn +akS +ahq +amo +amO +anw +anw +anw +anw +anw +anw +aqs +are +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aQW +aiE +aqF +aBN +aCd +aiE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +aOi +aab +aab +aab +aNM +aNM +aOt +adG +aOY +aPl +aPH +aPW +aQi +aQv +aQP +aQP +aQj +aRf +aRq +aRE +aRq +aRU +aSf +aSw +aLO +aSX +aRd +aXy +aSI +adG +aOF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(46,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +arW +aDz +aDz +aDz +aDz +arW +aac +agw +ahd +ahS +cpd +aWF +akn +akS +alA +amp +amP +anx +anx +anx +anx +anx +anx +aqt +are +aMI +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqx +awb +ang +aiE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +aND +aMG +aMG +aMG +aMG +aab +aOm +adG +aOY +aPm +aPI +aPX +aTB +aQj +aQG +aQG +azU +aRe +aRr +aRF +aRp +aRe +eFg +bKS +rYy +aSY +aTk +bhf +aSI +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(47,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +agw +agw +agw +air +aWF +akn +akS +alB +amp +amP +anx +anx +anx +anx +anx +anx +aqt +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +axP +aBQ +aGn +aiE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aQU +adG +adG +adG +adG +adG +adG +aOi +aOm +adG +aOZ +aPn +aPJ +aPY +aQk +aQw +aQj +aQj +aQY +aRe +aRs +aOG +aOS +aRV +pPs +lcS +aSI +aRM +aRt +aRA +aSI +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(48,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +kqo +kqo +kqo +kqo +kqo +abz +abB +jJd +oEL +akn +akS +alC +amp +amQ +any +any +aor +aoS +anx +anx +aqt +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +asg +azN +aGp +aiE +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +adG +aOi +aOm +adG +aOW +aPK +aPK +aPK +aPK +aPK +aPK +aPK +aPK +aRe +aRe +aRe +aRe +aRe +aSz +aSz +aSI +aSI +aSI +aSI +aSI +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(49,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +kqo +rCt +cbM +wob +kqo +kqo +kqo +xkx +vun +bhu +akS +alD +amq +amQ +any +any +alE +aoT +anx +anx +aqt +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +arj +aBP +aFo +aGQ +aoL +aBU +aCx +aJF +aFw +aLl +aLS +aLS +aMN +aLS +aLS +aLS +azL +azL +azL +adG +aOi +aOm +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +aRh +adG +adG +adG +adG +adG +adG +adG +adG +aRh +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(50,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aae +aae +aae +kqo +kCW +hxY +bUM +adk +bTC +woN +abA +aDW +akn +akT +alE +amr +amQ +any +any +aos +aoU +anx +anx +aqt +are +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahh +ahp +ahp +ahp +ahh +afK +afK +afK +afK +afK +aoy +amT +obl +jAt +azL +aFN +aBW +aBW +aJG +aKE +aLl +aLT +aLS +aLT +aLS +aNq +aLS +azL +azL +azL +adG +aOi +aab +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(51,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aQW +aae +aae +aay +abI +kqo +xHg +ksL +adx +cEx +vop +woN +abA +ajA +akp +akT +alE +amr +amQ +any +any +any +any +any +any +aqu +are +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +ahr +apA +atV +ahh +auu +auu +axF +ayr +aBe +afK +aAm +cGt +cJL +azL +aBb +aBW +aCy +aJH +aKF +aLm +aLS +aLS +aLS +aLS +aLS +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(52,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aae +aan +aaX +abJ +xQG +gym +wer +tki +hIu +lqE +woN +abA +aDW +akq +akU +alF +amr +amQ +any +any +any +any +any +any +aqu +are +ary +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +ahT +atp +atW +ahh +auu +auu +auu +ayB +aBg +afK +aAY +eJm +tRg +azL +aBc +aBW +aBW +aJI +aKE +aLl +aLT +aLS +aLT +aLS +aNr +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(53,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaf +aau +abC +adf +kqo +kGd +oav +pph +pph +cMO +kqo +bsb +aUd +akr +akV +alG +ams +amR +anz +anz +anz +anz +anz +anz +aqv +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +ahT +atq +akt +ahh +auu +auu +axO +ayB +aBh +aBj +aCs +mUE +tWn +aTe +uaN +aBW +iQr +gtp +aKG +aLl +aLS +aLS +aLS +aLS +aLS +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(54,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaf +aav +qqP +abL +abO +abV +aco +acu +acu +acu +acA +fkn +aWF +aiJ +akT +alE +sSK +amN +amN +amN +amN +amN +amN +apJ +apI +arf +arz +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahh +ahU +atr +atY +ahh +auu +auu +axO +ayN +aAT +aBw +aCt +oUI +wrA +lgo +lSv +kuU +kuU +mWX +aKE +aLl +aLT +aLS +aLT +aLS +aNr +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(55,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaf +aaw +abF +abM +abU +abW +act +acz +acz +acz +acB +aUc +aUf +akx +akT +acY +ueU +arg +arg +arg +arg +arg +arg +aeo +arg +arg +arA +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +aiu +atB +aua +ahh +auu +auu +axO +ayP +auc +afK +kyC +jrn +feu +azL +aFQ +aBW +aJd +aJL +aKH +aLo +aLS +aLS +aLS +aLS +aLS +aLS +azL +azL +azL +aaq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(56,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaf +aau +abG +prD +jYD +boy +boA +boB +boB +boC +jYD +pnq +pPQ +aku +akS +aMS +jBB +amv +amv +amv +amv +amv +amv +apL +arh +arh +arB +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +aiw +atC +aub +ahh +auV +auV +ayk +ayT +ayW +afK +aBi +mXu +kXo +azL +aBI +aBW +aBW +aJG +aKE +aLl +aLT +aLS +aLT +aLS +aNr +aLS +azL +azL +azL +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(57,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aae +aax +abH +abN +eEW +oXx +pIB +qoL +mFy +keV +oOD +kuQ +aWF +akv +akS +alJ +jBB +amv +anB +aoa +aot +gLg +amv +apM +aiK +ari +arC +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +aiy +atD +alI +ahh +auW +awO +ayl +azl +aFi +afK +aIq +mXu +lvH +azL +aoQ +aCb +aSH +aJM +aGl +aLp +aLS +aLS +aMO +aLS +aLS +aLS +azL +azL +azL +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(58,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aMG +aac +aac +aac +aac +aac +aac +aQW +adR +adR +adR +adR +aac +aac +fzy +fzy +aTY +fzy +jYD +vEm +waR +adP +bUT +yfW +oOD +kuQ +aWF +aWN +akY +akY +fxh +lqX +qqV +akY +akY +akY +akT +apN +akT +akS +akS +akS +afj +afj +afj +aac +afM +afM +afM +afM +afM +ahh +ahh +ahh +auq +ahh +afK +afK +afK +azG +afK +afK +ayR +ttH +txO +azL +azL +azL +aTe +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(59,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aNU +adG +aaq +aaq +aac +aac +aac +aac +aac +shx +uNt +uNt +kwO +aac +aac +fzy +aeq +afn +adh +jYD +efR +vkv +wur +tLk +oKw +oOD +kuQ +aWF +aNE +akY +alK +oSv +aDZ +aDZ +aob +aKv +akY +apo +apO +aqB +afj +aMw +arD +afQ +awL +afj +aac +aEi +aXH +axh +afL +agy +ahk +aiA +atE +ahi +awA +awW +axG +aHj +aAr +ayu +aFm +aCB +qkf +dKj +aGR +aHI +aHj +aTh +aJN +aJW +aKR +aFW +aMz +aNF +bkp +aKk +bkP +blc +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(60,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +adG +aaq +aaq +aac +aac +aac +aac +aac +shx +uNt +uNt +kwO +aac +aac +afc +aer +afo +age +jYD +mBz +xGw +vEJ +adl +jFq +jYD +mjs +aWF +akx +akZ +alL +giR +amw +amw +amw +aov +akY +air +ajR +akx +afj +ajK +avF +afj +afj +afj +afi +aXG +adL +ayi +afV +agD +ahm +ajy +azn +awD +axI +axN +ayO +ayv +aze +azJ +aze +aBX +mel +iXM +aAo +aBL +ahf +aJe +aJO +aJW +aKS +aLX +aMP +aNF +bkq +bkE +bkQ +blc +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(61,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +adq +adq +aai +aai +adq +adq +aai +aai +adq +aaM +xXZ +adR +aac +aac +afc +vIh +tYE +agO +jYD +jYD +jYD +jYD +jYD +jYD +jYD +oAu +aWH +aWU +akZ +alL +giR +amw +amw +amw +aow +akY +app +ajR +aiD +afj +rAe +sla +afP +awM +afj +arn +aEi +aXJ +afh +aXL +afh +ahn +ajI +atE +awx +awB +axD +axH +ayH +awB +ayQ +aAM +ayS +azf +azK +aAp +apK +aCe +aJf +aJP +aJW +aLq +aLY +aMQ +aNF +bkr +bkF +bkR +blc +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(62,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +abX +agR +pJL +gae +aUe +upV +dMk +aak +adq +aaN +abD +adR +aac +aac +fzy +aet +xaU +bxa +ahv +adj +aiL +adR +qgM +aqO +aVX +kuQ +ajM +akx +akZ +amw +txo +peS +weK +aod +aox +aoV +apq +aiC +avj +aiH +opE +xvN +afj +afj +afj +arn +afh +aXL +afh +aXP +afh +aho +ajE +atT +atU +auY +auY +awE +azc +auY +atU +aAS +ayU +aCr +aqS +aqS +aqS +asa +aHK +asa +aqS +aLr +aLZ +aLr +aqS +bks +bkG +bks +aqS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(63,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +abX +agS +dlX +oIJ +iLR +aRJ +cnO +aal +adq +aaO +abE +adR +adR +adR +fzy +fzy +fzy +fzy +fzy +mOt +sEq +adR +adR +adR +adR +puE +aWF +akx +akZ +alN +amw +yet +olG +amw +amw +akZ +apr +apQ +aiG +afj +aqD +awo +afO +awM +afj +arn +afh +aeu +aeK +agC +ahg +aiz +atF +atT +aur +avt +avS +awK +azd +axC +auY +aAW +ayU +azq +asa +atX +aAq +aCv +aHL +aJh +aJX +aLs +aMa +aMR +aSC +aCv +aMa +bkS +bld +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(64,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +adq +aUb +wlf +oZC +qtt +gZn +mjT +aam +adq +aaP +lzq +acq +acC +adR +rrG +adg +adU +fNA +rWx +qAt +snE +ajz +wng +itr +oEh +kuQ +aWF +akx +akZ +alN +amw +yet +olG +amw +amw +akZ +aix +apQ +aqE +afj +afj +afj +afj +afj +afj +arn +atG +aud +aud +aud +aud +aud +aud +atT +aus +avu +avT +awX +axj +axE +ayo +ays +azy +azw +asl +atZ +aAU +aCw +aHN +aJj +aJY +aLt +aMr +aNe +aWr +bkt +bkH +bkT +bld +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(65,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +abX +aUe +sWR +hEt +aUe +nSq +tRk +aaj +aaG +abj +abY +abY +acD +adR +vna +cVg +bzK +aWW +adW +qAt +iHX +vqv +bJV +bmt +oEh +kuQ +aWF +aWO +akY +alO +amx +ana +anF +aiI +aVS +akY +aix +apQ +asS +aha +aha +aOb +ass +asR +agw +arn +atG +aud +aux +aux +aux +aux +aud +atT +aqy +avv +avU +awY +axl +axJ +auY +ayX +azA +aCN +asa +ayp +aAV +aCz +aHO +aAV +aFv +aFV +aHD +aNf +aXm +aAV +aMa +bkU +bld +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(66,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +abX +aWo +sXR +nnY +psO +vzs +jPW +mMS +adq +efc +iFr +iFr +acX +adR +mWk +kFJ +afU +hxR +rWx +qAt +dSQ +adR +adR +adR +adR +aWm +aWG +aWS +akY +akY +akY +anb +anb +akY +akY +akY +aps +apR +aqG +akE +akE +akE +ast +aoz +aqP +ase +atG +aud +aux +aux +aux +aux +aud +atT +auv +avw +avV +awZ +axz +axL +atU +ayZ +azA +aCV +aqS +ayq +aAX +aCA +aIu +aJk +aCz +aLv +aMt +aNg +aAZ +bku +aMa +bkV +bld +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(67,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +ueB +ueB +ueB +ueB +ueB +ueB +ueB +ueB +ueB +aaV +oat +acp +acH +adR +nue +aev +oEj +agf +rWx +qAt +tyN +vqv +und +aVH +oEh +aWn +aWF +aWT +ala +agw +amy +amy +amy +amy +amy +aik +apt +apS +aqH +apS +apS +apS +ajR +apX +alP +aac +atG +aud +aux +aux +aux +aux +aud +atT +auw +avx +avW +avx +axA +axM +atU +aBH +azz +aFT +aqS +azo +aAZ +aGS +aIv +aJm +aKK +aLw +aMu +aNh +bko +bkv +aMa +bkW +bld +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(68,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +agQ +aWs +lMj +oPG +acF +tkB +tXj +oMh +ueB +aaW +abY +abY +acI +adR +mdE +aew +bzK +agg +adW +qAt +snE +ajJ +aTX +aVI +oEh +aWn +aWF +aWT +ala +alP +amy +amy +amy +amy +amy +aik +apu +apT +aqI +ark +ahc +wPD +avG +apX +agw +aac +atG +aud +aux +aux +aux +aux +aud +atT +anA +avQ +awy +asb +axa +ayj +amh +aBS +azB +aHP +aqS +azD +aBn +aGT +aIw +aIw +aKL +aLx +aMv +aIw +aIw +bkw +bkI +bkw +bkC +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(69,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +agQ +aWv +aWv +bqw +lpg +pOZ +aWv +yhU +ueB +aIL +pCv +abZ +acJ +adR +adQ +aex +afu +agh +rWx +qAt +aiO +adR +adR +adR +adR +xBf +aWF +aWT +ala +alP +amy +amy +anG +amy +amy +aoX +aoX +aoX +aqJ +aoX +aoX +aix +avG +apX +alP +aac +atG +aud +aud +aux +aux +avY +aud +atT +amh +avX +aym +atU +ayt +ayV +atU +xdM +azC +aCV +aqS +azE +aBO +aHG +aIw +aJQ +aKM +aLy +aMx +aNs +aIw +bkx +bkJ +bkX +ble +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(70,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +ueB +abK +aWv +dVZ +lFG +pOZ +aWv +ghk +vFm +lAW +acL +adR +adR +adR +adW +aey +adW +adW +adW +afv +ajP +ajN +aUi +ado +adR +aWn +aWF +aWT +alb +agw +amy +amy +amy +amy +amy +aoX +apv +apU +aqK +apv +aoX +juj +avG +apX +alP +aac +ats +ats +aJr +auZ +auZ +avZ +awF +atU +aoc +azk +aGB +atU +atU +ayn +atU +aza +aAg +aWf +aqS +azH +aCu +aqS +aIw +aJR +aKN +aLz +aMy +aNt +aIw +bky +bkK +bkY +ble +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(71,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +agQ +bhk +aWv +qXD +gnE +rnG +qVj +gvp +lgb +aaY +add +adS +xsf +aWZ +qze +aez +nyy +agH +afm +afw +asM +axq +ajQ +aVL +adR +aWp +ajM +akv +alc +alc +amz +alc +alc +alc +alc +alc +apw +apV +aqL +arl +aoX +uFI +isl +keX +agw +aac +aac +ats +aPD +ava +awa +cRi +awG +axc +axR +aAv +aGC +pAh +ayY +aBR +aBY +azb +azM +aWj +bbG +aXd +aHQ +aIx +aJg +aJT +aKO +aLU +aKO +aNu +aIw +bkz +bkL +bkZ +ble +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(72,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +ueB +acE +aWv +sTM +wPV +pOZ +aWv +qnv +lWE +abi +adT +acr +jKY +adn +jmQ +agd +aeB +aHH +afs +agV +atL +aGr +aSO +aSR +adR +aWq +ajM +akx +alc +alQ +amA +alc +anH +aog +aoA +alc +apx +apV +aqL +arm +aoX +daN +avG +apX +alP +aac +aac +aue +auA +avC +rMS +hoQ +aEr +axd +aEr +aEr +aEr +nLX +aEr +aEr +auX +azF +azI +azF +lYT +aGU +aGV +aAs +aJg +aJT +aKP +aLU +aKP +aNv +aIw +bkA +bkM +bla +ble +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(73,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +agQ +aWv +aWv +kkW +lpg +pOZ +aWv +pCb +ueB +adO +adO +fGm +adO +adO +whW +whW +iLF +adO +aft +agW +awc +aKJ +aSP +aSS +aWb +aWn +aWF +aNE +alc +alR +amB +anc +anI +aoh +aoB +alc +apy +apW +aqM +apy +aoX +aOa +ajR +apX +alP +aac +aac +aue +akk +avC +sSW +lpB +awH +axe +awH +aOq +azg +azO +aAu +aBk +aFj +awC +eQN +aXe +fgW +aGW +aHR +aAs +dbk +aJU +aKQ +aLV +aKQ +aNw +aIw +bkB +bkO +blb +blf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(74,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +agQ +bhB +aWv +hVc +acK +lmq +aWv +syw +ueB +tPE +acW +acs +adm +adr +rnn +rnn +agb +adO +adi +ahw +aeJ +aeJ +axn +aeJ +aeJ +aWn +ajM +akx +alc +alS +amC +alc +anJ +alc +alc +alc +agw +agw +agw +agw +aoX +asc +ajR +apX +agw +aac +aac +ats +auB +avC +bSe +aff +azP +azP +azP +azP +azP +axg +axg +axg +axg +axg +axg +axg +aXk +aGX +aHR +aHJ +aIw +aIw +aIw +aIw +aIw +aIw +aIw +bkC +bkC +bkC +bkC +aNi +aNi +aKj +aKj +aNi +aNi +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aSu +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(75,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +ueB +dFg +dFg +ueB +ueB +dFg +dFg +ueB +ueB +xQv +aIF +acG +aWY +adN +adY +afl +eCP +adO +adp +ahC +agG +ahx +ahI +qzU +aiW +aWn +ajM +akx +ald +alT +amD +aQd +ane +ane +ane +alc +apz +afk +aqN +agw +arE +aix +ajR +apY +agw +ats +ats +ats +auC +avC +bSe +awe +azP +axU +azi +aAw +azP +aCG +azT +azT +aFn +aFt +aGY +aXf +axg +aIG +aHT +aUl +aJn +aJZ +aKT +aKT +aKT +aKT +aMT +aKT +aKT +aKT +aKT +aKT +aKT +aMT +aKT +aKT +aOH +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(76,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +bou +ajG +ajG +ajG +aac +aac +aac +aac +aac +aac +agI +kQb +eeD +aeb +afl +aXb +aeb +aeC +ade +adO +adX +ahF +agP +ahy +ahV +aiN +aiW +aWt +aWH +aWU +ale +alU +amE +ane +ane +ane +ane +alc +aiv +afN +aqO +agw +arF +aix +ajR +apX +agw +ats +atH +auf +auD +avC +jFz +hGm +azP +axV +azj +aAy +azP +aLP +azT +aEU +aHc +aFu +aHc +aEU +axg +aGZ +aHR +awf +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(77,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +bov +bow +ajG +aac +aac +aac +aac +aac +aac +agI +mwz +gZR +bpw +afl +cbn +bpw +afl +agc +adO +aef +ahC +agT +ahA +ahX +aiQ +aeJ +aWu +aWI +akC +alf +alV +amF +anf +alc +alc +alc +alc +agw +agx +agw +agw +agw +ajj +asy +apZ +agw +ats +ats +ats +auE +qvp +xlW +awg +azP +axW +azm +aCM +azP +aCH +azT +aEG +aAE +aFU +lxa +aEV +axg +aHa +aHR +cmQ +ats +aKb +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aLn +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(78,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +bou +ajG +aaq +aac +aac +aac +aac +aac +agI +lwp +wPB +aeb +aeC +aXb +aeb +afl +gzd +adO +aep +ahJ +agU +kRa +ayC +aiR +aiW +rJT +aWF +akD +alg +alW +amG +ahB +anK +aoi +aoC +aoY +apB +agz +agA +ajb +agE +ahe +ahl +aqa +aha +att +aOb +aha +auF +nbM +nfl +jGK +azP +azP +aTT +azP +azP +aIE +azT +aEG +aEu +aAA +aFU +aER +axg +aHb +aHR +awf +aJn +aKa +aKU +aKU +lCq +jvK +jvK +jvK +bkN +jHw +jML +jHw +jpB +qWU +aGO +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(79,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +bou +ajG +aac +aac +aac +aac +aac +aac +adO +uyz +aIF +ngL +hLd +rQp +pHl +afl +gzd +adO +aes +aiP +awI +aKY +ahZ +aiS +ajL +aiV +aST +akE +alh +alh +amH +anh +anh +anh +anh +aoZ +anh +aqb +alh +alh +alh +alh +asz +alh +alh +alh +alh +alh +auG +kjn +ceN +jGK +axi +awd +azQ +aAz +akM +aAi +azT +aEU +aEz +aEP +aEP +aFs +axi +aGX +aHR +awf +aJn +aKa +aKU +aKU +jvK +jvK +kdx +jvK +cnN +mDf +eiO +cnZ +fYr +qwm +qwm +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +bhX +aaq +aaq +biy +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(80,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +bou +ajG +aac +aac +aac +aac +aac +aac +adO +qGK +hCr +hCr +wQs +ads +nQA +hCr +crh +adO +aeI +afR +ahu +aSN +aia +aiT +ajO +aWw +aSZ +aWV +ali +ali +ali +ali +ali +ali +ali +aOT +ali +baQ +baJ +baJ +baJ +baJ +baJ +axK +aEo +baH +baL +baL +baL +bby +aEp +afd +axk +ayy +azR +aAA +azV +azT +azT +aEI +aBs +aGw +aHg +cAG +axk +aXq +aXn +aIy +ats +aKD +aKU +aKU +ddn +eCG +oLR +jvK +oPm +kmK +xOa +dVW +kun +kBF +qom +aKU +avs +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +bhE +bhE +bhE +bie +bio +bhE +bhE +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(81,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +bou +ajG +aac +aac +aac +aac +aac +aac +adO +adO +adO +adO +adO +adO +adO +adO +adO +adO +aeJ +aeJ +aeJ +ahG +aiM +aiU +ajS +oCC +ajR +akn +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +asT +aTu +asT +alX +alX +auH +bbA +afe +afg +axS +ayz +azS +ayz +mXo +qfz +qfz +cSl +hEN +ayz +ayz +eIs +axS +aXr +aXp +awf +aJn +aKa +aKU +aKU +ddn +pNk +vrU +dJm +kiw +kcC +eGv +lFc +dGZ +sGV +qom +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +bhE +bhU +bhY +bif +bip +biz +bhE +aac +aac +aab +aMG +aMG +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(82,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +bou +ajG +aac +aac +aac +aac +aac +aac +aaE +abk +abP +acv +abR +abe +aaE +aeD +afW +agJ +ahD +aic +aeJ +ahH +aeJ +aeJ +ajT +aWn +ajR +akn +alj +all +awj +alj +aZk +aZw +atu +alj +baf +bar +aPi +awz +bab +bbC +bbE +asT +aPk +asT +alY +alY +auI +bbA +ajM +aoG +axT +ayA +azW +aFr +aEJ +aFr +aXo +aFc +aFr +aFr +aFr +aFr +aXl +aXs +aXu +aIz +aJn +aKa +aKU +aKU +ddn +pwF +hlF +jvK +uhm +gUL +rbR +hCB +wQf +tLv +qom +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +bhE +bhV +bhZ +big +biq +biA +bhE +aac +aac +aaq +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(83,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +bou +ajG +aac +aac +aac +aac +aac +aac +aaF +abl +abQ +acw +acw +acw +blT +blU +orc +agK +ahE +aid +aiY +aTr +aaE +ahd +ahS +aWx +ajR +akn +alj +aqc +awk +axf +aZl +aZx +aZL +aBo +bag +bas +aZU +aZV +aXW +bbD +bbH +asT +aYb +asT +alY +alY +auI +bbA +ajM +aoI +axk +azh +aMk +ayG +aBt +azT +aXC +aFd +azT +azT +aMk +aXw +axg +aXt +aIa +aOJ +ats +ieb +aKU +aKU +jvK +jvK +ivq +jvK +rzV +fcg +tcW +iqb +fru +qwm +qwm +aKU +aOK +aKj +jBt +jBt +jBt +jBt +jBt +jBt +jBt +aac +aac +bhE +bhE +bhE +bih +bir +bhE +bhE +bhE +bhE +bhE +bhE +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(84,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +bou +ajG +aac +aac +aac +aac +aac +aac +aaF +abm +abR +abR +abR +abS +aaE +bmo +orc +agL +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aWz +ajR +akn +alj +awi +awl +alj +aZm +alm +avl +alj +avR +bat +baG +bba +aYn +asT +asT +asT +aYj +asT +asT +asT +asT +bbF +ajM +apb +axg +axg +axg +aHd +aBv +azT +aXC +aFe +azT +aBq +axg +axg +axg +aHh +aIa +aIz +aJn +aKa +aKU +aKU +xXf +jvK +jvK +jvK +wyi +jHw +caw +jHw +gHh +qWU +aGO +aKU +aOI +aKj +kUh +vWL +ghW +wWo +rPu +ixw +bhE +bhE +bhE +bhE +bhE +bia +bii +bis +biB +bhE +biR +bje +bjl +bhE +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(85,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +bou +aaH +aac +aac +aac +aac +aac +aac +aaE +aky +aas +abR +adZ +abR +aaE +bmp +bod +agM +aeG +aif +sWs +agk +trA +aUs +aeG +aFf +aWL +aNp +alj +alj +alj +alj +alj +alj +alj +alj +bai +aZx +baK +aZx +aZj +asT +aEe +aXY +aYb +aYs +aYx +aYE +aXx +bbF +ajM +ape +aEA +ahd +axg +ayI +aCF +azT +aXC +aEC +aEH +aSF +axg +atH +aGy +aUk +aIa +aIz +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +jYd +aKU +aKU +aKU +aKU +aKU +aOI +aKj +uIY +udd +oWD +cSL +csd +ehr +bhE +bhF +aLW +bhQ +bhW +bib +bij +bit +biC +biJ +biR +biR +biR +bhE +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(86,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +bou +ajG +aac +aac +aac +aeV +afG +afG +aah +aah +aah +aah +aah +aah +aah +bmN +aah +aah +aah +ieo +wKZ +agl +lXo +qda +aWg +aWB +ajR +akn +aYO +aZi +awn +atI +aYP +aYT +aYT +alj +baj +bau +aNC +bbb +aZr +aZT +aEg +aYb +aYb +aYp +aYy +aYF +aXB +bbF +ajM +apf +aWC +aWC +aWC +aWC +aWC +aED +aEQ +aEE +aAB +aAB +aAB +aAB +aAB +aHf +aIa +aIA +ats +aKb +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +jYd +aKU +aKU +aKU +aKU +aKU +aOI +aKj +hqs +nJe +fKo +cSL +csd +hQl +bhE +bhG +bhN +bhR +bhE +bhE +bik +biu +bhE +bhE +biS +bjf +bjm +bhE +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(87,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +abd +ajG +aac +aac +aac +afD +bjH +aeQ +ago +acS +bmm +ahO +aeR +afE +adw +ady +adz +azu +aSM +afF +aja +aTK +agX +aVW +aWh +qIb +mFq +baz +aYV +aEj +awn +aOU +aYQ +aYU +aYU +alj +aZG +aZH +aZH +aZH +aYc +asT +bac +aYb +aYb +aYp +aYz +aYG +aXB +bbF +ajM +apD +aWD +baZ +bfI +bfH +aWC +aWC +aYC +bcI +aAB +aCL +aut +aEO +kSJ +aHf +aHW +aIz +aJn +aKd +wtd +wtd +qem +aKV +aKV +aKV +aKV +aKV +voF +aKV +aKV +aKV +aKV +aKV +aOL +aKj +gTL +udd +oWD +ddl +hmT +gSr +bhE +aLu +bhO +aMs +bhE +bic +bil +biv +biD +biK +biT +bjg +bjn +bhE +adG +aOs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(88,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOn +ajG +ajG +aad +aat +aat +aah +bjI +blm +blw +blK +bmn +ahP +ahP +bmG +bmL +bmU +bnn +aDp +abw +ahW +lqJ +bno +agX +aVn +aeG +qIb +avG +akn +aYO +aEv +awn +aJi +aYR +aYR +aYX +aYZ +aYR +aYR +aYR +aZe +aYR +aEa +bad +aYb +aYb +aYt +aYA +aYH +aXB +bbF +aEq +apE +bed +bbd +bci +bbd +bbd +bgg +bdb +bdp +bgP +aAx +aCQ +aFh +aGz +aXM +aHX +sDq +aJn +bMK +bMK +bMK +rxh +jZe +uxT +ifI +dXv +ooM +uYO +xxB +xud +aMU +aKe +aKe +aKe +aKj +ooI +uQt +vIA +tit +mYT +geQ +bhE +bhE +bhP +bhT +bhE +bid +bim +biw +biE +bhE +bhE +bhE +bhE +bhE +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(89,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +ajG +ajG +aag +aaQ +aaQ +aah +bjI +bln +blx +blR +bmq +aie +blx +bmH +acR +aap +akb +aFC +aSM +ahY +afz +bnX +exM +ahK +aUU +qIb +avG +akn +aYO +aZs +aTt +aEb +aSE +aYS +aYh +aYS +aYY +aZa +aZc +ajB +aPe +aZh +aZA +aZO +aYo +aYu +aYI +aPC +aXD +bbF +avG +aNE +aWC +bbe +bcj +bcH +bcP +bcU +bdd +aFY +aAB +aCP +aEK +aFX +aAB +aZD +aHY +kmS +ats +aKf +aKf +aKj +aKf +aKj +aKj +aKj +aKf +aKg +cdv +aKf +aNX +aKj +aKj +aKf +aKf +aPs +aPs +aPs +aPs +bhh +aPs +yir +aPs +aPs +aPs +aPs +aPs +aPs +bin +bix +biF +biF +biU +bjh +bjo +biF +biF +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(90,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +ajG +ajG +aag +aba +acM +aah +afH +blo +blA +blS +bmr +acR +blA +bmI +acR +aim +ake +aGm +aah +adE +aUV +bnY +agX +ahL +aUU +xIO +isl +bhu +alo +alo +alo +ayx +ayx +ayx +ayx +ayx +aZv +ayx +ayx +ayx +ayx +asT +ajH +aYf +bae +aYv +aYB +aYJ +aXB +bbF +ajR +akx +aYC +aYC +aYC +bcI +bcI +bcI +bgL +bcI +bcI +aYC +aYC +aYC +bfg +baD +aHZ +llH +aJo +aKg +aKg +aLA +aKg +gfg +aMV +aKe +aKg +aKg +cdv +aKg +aKe +aOc +aKe +aKg +aMA +aPu +aPM +beU +bfj +bhi +qbo +beU +bhm +beU +bhp +beU +beU +gRG +laB +beU +biF +bsr +biL +biL +biL +bjs +biF +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(91,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +adG +adG +aag +aaQ +acN +afD +abx +blp +blB +blS +bms +acR +blB +bmI +acR +aiB +akw +bnF +bop +aNO +afB +agm +aVk +ahM +aVt +aRN +dDQ +akn +alk +aZt +vtN +ayx +aZn +aYq +aZN +aPa +aZY +bav +baN +bbc +bbp +asT +aTC +aYg +bae +aYb +aTv +aYK +aXB +bbF +ajR +aGu +aYC +bbf +bcn +bcr +aHz +bdm +bdg +bdo +beJ +bgk +bbk +bgB +aYC +bdr +aIa +lIe +aJn +aKh +aKW +aKf +aMb +sFW +aMW +sFW +ghf +ghf +gLd +ghf +sFW +aMW +sFW +aOu +aNx +aPs +aPZ +beV +bfJ +cYm +bhj +beV +oWt +beV +bhj +beV +pPe +nLw +bhw +nLw +biG +biM +biV +biL +biL +biL +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(92,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +bou +ajG +ajG +ajG +aag +abq +aee +aah +bjO +blp +blC +blV +bmu +aie +bmM +bmJ +acR +ajg +akz +bnG +uAI +aOX +gtn +afC +uAI +ahN +aii +aRW +aeO +akn +bbq +woZ +bbu +ayx +aZo +aYW +aZb +aZz +aTU +baa +bal +bam +bbw +aEc +aYm +bak +aZI +aYb +aYy +aYL +aXB +bbF +ajR +aGA +aEd +bfc +aGk +bcJ +bcQ +bcW +bcT +bcR +bah +bgk +bbk +bfc +bbg +cWU +aIb +aID +aJp +aKi +aKX +aLB +aMc +aMB +aug +aMB +rWd +wIw +ieE +ieE +vLM +aOd +hth +aOv +aPc +aPL +aQa +hId +bgm +hId +ely +hId +jCE +hId +bhq +hId +cHf +beU +bhx +beU +biF +biN +biW +bji +bjp +bjj +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(93,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +bou +ajG +ajG +ajG +aag +abq +iOL +aah +aaI +agj +agq +blK +blK +bmc +bmz +bmP +bmX +bnj +aHS +adA +aTd +aeN +aUW +aVe +aVl +aVo +aij +aeH +avG +akn +alk +bbs +aNo +ayx +aZp +aZB +aZP +aZB +aZC +aZC +baU +ban +bbx +asT +aXX +aYi +aYp +aYw +aYD +aYM +aXE +bbF +ajR +aGA +aEd +bbh +bbk +bcK +bcV +bcX +bcZ +bcS +beR +bgo +bbk +bgv +bco +bds +aIa +aIz +ats +aKj +aKj +aKj +aKf +aKj +aKj +aNj +aKf +cdv +aKg +aKf +aKj +aKj +aKj +eHY +aKf +aPs +aPs +aPs +aPs +bhl +bhl +aPs +aPs +aPs +aPs +aPs +aPs +qDF +bhy +bhs +biF +biO +biX +bjj +bjq +bjj +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(94,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +bou +ajG +ajG +ajG +aag +abq +abq +acb +afX +agn +agN +aWa +aWa +bmd +bmA +bmQ +bmY +aig +acg +bnI +acg +acg +aUX +aVf +akF +aeG +aeG +ajh +avG +akn +alk +alk +bdD +ayx +aZq +aZC +aZC +aZC +aZC +aVV +baV +bao +bap +asT +asT +asT +aYr +asT +asT +asT +asT +bbF +ajR +aGA +aEd +bbk +bbk +bbk +bbk +bdh +bdy +bdF +bbk +bbk +bbk +bbk +bco +bds +aIa +aIB +ats +aFq +aFx +aKj +aMe +aMD +xxe +aMD +aMD +aNG +aNN +aKe +aKe +aMY +aKe +aOw +aKe +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aPs +beU +bhx +beU +biF +ruh +biX +bjj +bjq +bjt +biF +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(95,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +bou +ajG +ajG +ajG +aag +abs +aSi +aaA +abv +acR +agY +acR +acR +acT +adc +abo +abr +bnk +bnz +bnJ +ace +aUP +aUY +aVg +acg +ahd +ahS +aji +avG +akn +alk +bbt +alk +ayx +ayx +aTy +aTz +aTz +aTz +aTz +aTz +aln +ayx +alo +aqO +asT +aYp +asT +alY +alY +auI +bbA +ajR +aGA +aEd +bbl +beX +beX +bcY +bdq +bbk +bbk +beS +beX +beX +bcM +bco +bds +aIa +aIz +ats +ats +ats +ats +aMf +aKT +aKT +way +aKT +vTf +aKT +aKT +aKT +aOe +aOe +aOx +aOe +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +bhr +beU +bhx +beU +biF +biP +biY +bjj +bjq +bjj +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(96,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +bou +ajG +ajG +ajG +aag +acc +aSk +aUD +abf +blt +agZ +acO +blD +blW +sJv +aih +jSV +bnk +akA +bnK +bnP +bnS +aUZ +aVh +acg +agw +agw +aei +aeP +akn +bbq +aZu +bbu +aou +ayx +aZE +aZR +aZR +aZR +aZR +aZR +bbi +ayx +aqO +aTP +asT +aPp +asT +alY +alY +auI +bbA +ajR +aLh +aYC +beY +bfc +beX +aWk +bdq +aZM +bbk +bax +beX +bfc +bff +aYC +ber +fyZ +aUm +aJn +aAN +aAN +aJn +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKj +aKj +aOy +aKj +aKj +aNi +aNi +aKj +aac +aac +aac +aac +aac +aac +aac +bhr +beU +bhx +beU +biH +biL +biZ +bjk +bjr +bjj +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(97,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaU +ajG +ajG +aar +acy +acy +acy +aVN +acy +aci +blq +afy +afx +afy +blq +aek +aeA +acg +bnL +aUL +aUR +aVa +bkk +acg +aVq +aVu +bol +avG +akn +alk +bbs +alk +aAn +ayx +aZF +aqd +aqd +aqd +aqd +aqd +bbj +ayx +alo +alo +asT +aUy +asT +alZ +alZ +auJ +bbA +ajR +aGA +aYC +bbn +aGE +aGE +aYC +bgK +aGE +bgN +aYC +aGE +aGE +aYC +aYC +bey +suT +aIC +aJn +aAN +aAN +aJn +aKU +aME +aME +aME +aNz +aME +aME +aME +aNY +aKj +aOj +aOz +aOM +aKj +aUu +beW +aKj +aKj +aac +aac +aac +aac +aac +aac +aPs +bht +bhx +beU +biH +biL +bja +biL +biL +biL +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(98,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aaU +ajG +aaq +uWw +aTs +aUH +aVT +aXc +acd +blq +afb +adM +afA +blq +abt +aeL +akA +bnM +bnP +aUS +aJl +aVj +acg +auS +aVu +bol +avG +akG +aha +aha +aha +aha +aks +apS +aqQ +cFA +aqR +aZS +aZZ +anL +axb +viF +vKm +nlf +wXr +vvA +myZ +myZ +myZ +dsF +aDV +aZd +bbz +bcs +bcs +bcs +bct +aAd +bcx +aLf +bcy +bcz +bcs +bcA +bcO +beB +aHW +knU +aJn +aAN +aAN +aJn +aKU +aMF +aMZ +aNk +uSA +aNJ +aNP +ayh +aKU +abg +aOk +aOA +aON +aKj +bde +bfh +bgu +aPb +aac +aac +aac +aac +aac +aac +aPs +bhv +bhz +bhC +biH +dyV +bja +biL +biL +bju +biF +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(99,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +abn +ajG +aaq +acy +aTL +aUI +aVU +bhn +bjY +blq +blG +blZ +bmx +blq +aeT +aeM +acg +bnN +bnQ +bnT +xog +aVi +acg +agw +agw +bol +gTN +akL +akH +akH +akH +xEB +vJA +vJA +vJA +xmK +xUo +bqs +xUo +xUo +aCK +aCK +aCK +xUo +fOj +ahR +arG +xEB +akH +akH +aGv +aGD +aGF +aHk +aye +aye +aye +aBr +aHm +aye +aHm +aIV +aXg +aXg +aXK +bfy +gAF +pgi +aUo +aKZ +aTQ +aJn +aKU +aMF +aNa +aNl +aNl +aNK +aNP +ayh +aKU +abg +aOk +aLa +aOO +hCz +beN +bfh +bhg +aPb +aac +aac +aac +aac +aac +aac +aPs +beU +bhx +beU +biH +biL +bja +biL +biL +biL +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(100,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aaq +abn +ajG +aaq +acy +aTM +aUJ +aVY +bjx +bjZ +blq +blH +aea +bmy +blq +nuu +afa +acg +vnS +akB +adB +acQ +uiJ +acg +aVs +agw +bol +ajM +atc +aMX +ama +amI +dmH +ple +ali +ali +bEd +apC +aqf +aOT +aFI +avP +avP +avP +apS +apS +ajX +aZW +baw +baO +avn +avn +aKx +awU +aCJ +axw +axw +axw +aAf +aCJ +axw +aCJ +aJc +aCU +aGf +aIc +aHt +gVg +aII +aUp +aOQ +aTR +aJn +aKU +aMF +aNb +aNm +aNl +aNK +aNP +ayh +aKU +abg +aOk +aOB +aOP +aKj +beQ +bfh +bhg +aPb +aac +aac +aac +aac +aac +aac +bhr +beU +bhx +beU +biH +biL +bjb +bjk +bjr +bjj +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(101,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aaq +abn +ajG +aaq +uWw +aTN +aUK +aVZ +adF +ach +blq +aeS +aec +bmC +blq +ajk +box +acg +acg +aTd +bnU +acg +acg +alo +nKy +agw +bom +aWI +avH +alo +amb +aio +ank +aio +aoE +aCD +aCE +agw +aqg +aqT +apc +aBF +aBF +aBF +aXT +aXT +bbN +aru +aGh +aru +avp +atl +avd +aru +avd +aru +arJ +azv +arJ +aCS +avK +aHr +aCS +avK +arJ +arJ +aHu +sPd +arJ +arJ +arJ +arJ +arJ +aKU +aME +aME +aME +aME +aME +aME +aME +aKU +abg +aOk +aOC +axB +aKj +beT +bfi +aKj +aKj +aac +aac +aac +aac +aac +aac +bhr +beU +bhx +beU +biF +biQ +bjc +bjj +bjq +bjj +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(102,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +abn +ajG +aaq +uWw +aaZ +abp +aTq +aUG +aVv +blq +blM +bnq +heL +blq +aka +aca +aed +asA +aNy +aNI +aSb +agp +keg +ycf +ail +bon +ajM +awp +alp +amc +aio +rXW +lXv +axX +alY +alY +agw +aqh +agw +apc +asZ +anN +aVO +ate +ate +baB +asD +baM +api +atf +atw +atP +avD +bej +bfO +bfZ +aHy +bee +aCT +cGs +aHs +baA +aIl +aIO +bgD +asX +bdP +beA +aJs +aKn +arJ +arJ +aKU +aKU +aKU +aKU +aKI +aKU +aKU +aKU +aKU +aKj +aOl +oMK +aPt +aKj +xku +xku +aKj +aac +aac +aac +aac +aac +aac +aac +aPs +beU +bhx +beU +biF +biL +bjc +bjj +bjq +bjt +biF +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(103,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +bou +ajG +oJw +acy +acy +acy +acy +acy +acy +blq +blq +blq +blq +blq +abT +aWi +afJ +aIt +aIt +aPq +aSm +anL +bof +bog +boh +boo +akc +awS +alq +alq +amJ +jCn +qQZ +aol +alZ +alZ +apc +aqi +apc +apc +avg +anN +aVO +ate +ate +baB +awv +asw +beF +bda +atO +soG +anj +bfe +avy +bgf +avM +aJS +asX +aIl +aHB +aJv +aIH +jRO +bcc +bdM +bdQ +arJ +arJ +arJ +arJ +arJ +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aPs +qDF +bhy +bhs +biF +biO +bjc +bjj +bjq +bjj +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(104,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +abn +ajG +iUu +aaB +aUj +adV +aWe +bjB +aaS +abc +bmg +ada +aVD +adu +bnc +aej +agi +aIR +aLL +aPr +aSb +boe +art +asm +akI +akJ +akK +aBB +aoN +amd +aio +eHk +ioG +aom +aXZ +aYd +adt +aqj +aoH +aww +asp +avq +aBE +aVR +aEY +aZJ +aKc +beu +aqY +anj +anj +oII +anj +aLc +wBv +avz +avM +asX +asX +aIn +aIg +aJK +aKo +aKq +bck +aKr +beh +ayM +aya +bcd +bcd +ayE +bfP +aAl +aId +bdA +ayM +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aPs +bht +bhx +beU +biF +biN +bjd +bji +bjp +bjj +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(105,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +abn +ajG +iUu +aaC +aUt +aUv +aWA +aSo +aSG +aUv +aUv +adb +bmE +adC +aeg +aej +ahz +aIR +aLL +aQF +aSb +anm +arH +asn +aio +aio +aio +aio +aio +aio +aio +aio +anQ +aol +aYa +aYe +aYl +aqk +apg +apc +aGH +aVB +aVO +aZQ +bga +bgc +asD +bev +beG +azZ +atJ +atQ +bfd +anj +avm +avz +avM +asX +asX +asX +aIh +bdv +bbK +bbO +bcl +aAF +bcb +bgS +bgy +bgy +bem +bfC +bcd +bcd +aIe +bdK +ayM +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +bhr +beU +bhx +beU +biI +biL +biL +biL +biL +biL +bjw +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(106,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +abn +ajG +aaz +aaD +abb +aeh +aTV +aSp +aSK +blr +blN +adv +blr +adD +ahb +bnu +ajf +aLL +aLL +aQX +aSb +aoj +aXU +asr +aio +ajl +aof +akN +als +ame +aio +ano +anR +aok +awP +awP +awP +awP +awP +awP +aGH +aVB +aVO +bdB +ayL +baP +avp +asL +bdx +bez +beI +bgn +aKu +anj +avo +avz +avM +asX +aLd +aHe +aIi +bdG +aLd +bbP +bcm +aAG +bgF +ayM +ayM +ayM +ayM +ayF +ayM +ayM +ayM +ayM +ayM +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +bhr +beU +bhx +beU +biF +gYa +lWN +qKO +ikh +bjv +biF +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(107,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +ajG +aaz +acU +uOL +pcs +aWJ +aSq +aSL +aUv +aUv +abh +iLq +aSU +ahQ +aTb +aga +aMd +aNH +aRK +aSn +aoo +aXU +asv +aio +ajm +akf +akf +akf +amf +amK +anp +anS +asU +arN +aqo +avO +ate +awr +aGb +aVO +aVO +aVO +ate +aFK +bbI +avp +aCq +baq +atM +bgx +aBx +baq +anj +avo +avz +avM +asX +aLd +aHl +aIi +bgd +aLd +bbT +bcm +aAG +bfR +ayM +ayc +bdZ +ben +bfD +bfQ +aCn +bea +bec +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aPs +beU +bhx +beU +biF +biF +biF +biF +biF +biF +biF +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(108,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +ajG +aaz +aaC +aUv +aUv +aWJ +aVc +aWd +aUv +aUv +bmk +fLx +aSV +bng +bjJ +bjT +bkd +bkc +aRG +aSn +aoD +aXU +asr +aio +ajn +akg +akO +akf +amg +aio +anq +anT +aok +asK +asP +auO +auQ +awR +asP +aHn +aHn +aHn +asP +beL +aru +aru +aKy +beH +bfn +baq +bgp +baE +aLc +axt +avA +aCi +asX +asX +asX +aIh +bdw +bbL +bbU +bdJ +aAG +aIS +ayM +bdV +bea +ayD +bfF +bfS +bea +bea +bec +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aPs +bhv +bhA +bhC +pSu +bhH +beU +aPs +aaq +adG +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(109,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +ajG +aaz +aTp +aUA +aaJ +aaK +abu +aaT +blu +blP +bml +fLx +aTj +bjy +acx +bjU +bke +xZw +acP +aSn +aoF +arM +asE +aio +ajo +akf +akP +akf +aht +aio +anr +anU +aok +asi +asi +asi +asi +asi +asj +aJV +aWE +aWE +beE +beM +amY +ani +anj +bgx +anj +bgx +nXZ +bgx +anj +wju +bsa +aru +bgj +aET +aET +aIo +axZ +bbM +bbV +aAc +aEl +baC +ayM +bdV +beb +beo +bfG +bgl +aFA +bea +bec +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aPs +aPs +qTm +aPs +aPs +beU +bhJ +aPs +adG +adG +aNB +aNM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(110,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +ajG +aaL +aaR +aaR +aaR +aaR +aaR +aao +aao +aao +aao +aao +aTm +aTm +aTm +aTm +aTm +aTm +aTm +aTm +acf +arx +acf +aio +ajp +akf +akP +akf +ami +aio +aio +anV +aok +aSx +aop +aop +aop +aBp +aCl +aTF +bdC +beC +beK +bcN +bcg +anj +atA +aAL +anj +aGi +bgq +bgr +anj +anj +anj +aru +avJ +aIM +aIM +aIJ +ayf +aIM +bfY +bbY +aIf +aIU +ayM +ayd +ayb +bep +bfE +bgG +aFy +bea +bec +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aPs +vYr +faL +aPs +bhI +bhI +bhK +adG +aOF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(111,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +ajG +ajG +ajG +ajG +ajG +ajG +aaq +aaq +afS +afp +bfT +afq +afS +ais +ajv +ajV +amS +anP +apj +afS +apa +arO +asF +aio +ajq +akh +akP +alt +amj +amK +ans +anU +aok +aDI +aqp +aop +aqp +aCj +aFS +aVP +aVP +aVP +aFS +beO +aru +aES +aIN +aCf +anj +bgx +nXZ +baq +anj +anj +anj +bcu +asB +aIm +aIm +aIK +azs +bbR +bbS +bbZ +aIf +baT +ayM +bea +beb +bfo +bfK +bfo +aFA +bea +bec +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aPs +aPs +aPs +aPs +bhI +bhI +bhK +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(112,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aNM +bov +bov +aaU +ajG +ajG +ajG +aaq +afS +afr +acn +aeU +afS +ait +ajw +ajW +amV +aoe +apk +afS +apH +arq +asJ +aio +ajr +aki +akQ +alu +amk +amL +ant +anW +aok +aop +aop +aop +aop +aUr +aWM +aXj +aVy +aVy +aop +aKm +avL +atA +aZX +aBD +anj +bgx +rBz +bew +bfp +bfl +baX +amY +asB +aIm +aIm +aIP +azx +aIm +bgC +bgE +aIf +baW +ayM +bea +aHC +bfz +bfz +bfz +aHC +bea +bec +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aPs +bhI +bhI +aPs +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(113,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaU +ajG +ajG +aaq +afS +aby +acZ +aeW +afS +aby +afq +acl +amX +afq +afq +afS +aql +arq +asW +aio +ajs +akj +akR +alv +aml +amK +anu +anX +aok +aoM +aEX +atR +aEX +asp +asq +aWM +aXj +aVy +aop +aZy +aru +bca +anj +anj +anj +baq +bek +aru +aru +baF +aru +aru +bfX +aEW +bgz +ato +bcp +atN +arJ +aGK +bgR +aGK +aGK +aGK +aGK +aGK +aGK +aGK +bgH +bgH +bgT +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aPs +aPs +aPs +aPs +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(114,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +bou +ajG +ajG +aaq +afS +ait +aeE +afI +ags +agr +agB +anC +ain +amU +akd +arb +aqn +bdf +atj +acf +acf +acf +acf +acf +acf +aio +ajs +anY +aok +bdi +aop +bdj +arQ +auU +aXv +ath +afT +atk +atn +awQ +aru +bgt +bbm +bcf +bgs +bch +sts +aru +bge +bfm +bgA +aJt +aJt +aJt +aJt +aJt +bgQ +aJt +aJt +ayJ +bbW +aAe +aVC +aAj +bei +bfA +aTE +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaq +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(115,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aaq +abn +ajG +ajG +aaq +afS +ack +aeF +ack +afS +afS +afS +afS +alz +afS +afS +afS +aqU +arq +atm +atK +auy +atK +auM +avh +awJ +acf +aok +aok +aok +aEB +aop +aeZ +arR +aVy +bdl +aFM +aFO +aFM +atb +bbo +atb +aBy +aKt +aoJ +aLe +bdS +aLe +aoJ +bex +bfU +bgI +aJt +awT +axo +bgO +aIQ +aph +azt +aJt +aGx +aTE +aVw +aTE +beg +aTE +bfB +aTE +aGK +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aNM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(116,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +abn +ajG +ajG +aaq +afS +bet +bet +bet +afS +agF +adK +amW +arI +ajY +amZ +afS +aqW +arq +acV +acV +acV +acV +acV +acV +axr +ayK +hfN +atg +aSy +aop +aop +bdk +ask +aVy +aLg +aFM +aJu +aLb +atb +asu +ati +aFz +asu +aoJ +aUq +bdc +bfw +aoJ +beD +bfV +bgh +bgJ +awm +bdt +axy +axy +aHv +bdO +aJt +aGx +aTE +aGK +bdL +aGK +bel +aGK +bfM +aGK +aaq +aaq +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(117,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +abn +ajG +ajG +ajG +afS +bay +afq +afq +afS +ahs +afY +aib +aFZ +ako +and +afS +aqW +arr +asC +asC +asC +asC +asC +avi +axs +arL +aop +aUr +aWM +aWM +aWM +aWM +asH +aXj +bdH +aFM +aFP +aTI +atb +asx +aty +aGt +aKw +aoJ +baI +bfa +bfx +aoJ +bfk +bgi +bcw +aJt +aws +bdu +axY +bdn +aKs +axu +aJt +aQf +aTE +aGK +bef +aGK +bef +aGK +bfN +aGK +adG +aOi +aab +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(118,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaU +ajG +ajG +afS +afq +afq +afq +afS +ajZ +afZ +aiX +ajC +akW +anl +afS +aqX +arP +atv +atS +acV +acV +auN +avB +awN +azp +aop +aVy +aop +aop +aqq +aBG +asO +aqe +bft +aFM +aGd +aHp +bfb +asI +aum +aJw +asu +aoJ +bbJ +bfr +bdT +beq +bes +bcB +aLF +aJt +awt +bgM +awV +axp +bbQ +axx +aJt +aGK +aGK +aGK +aGK +aGK +aGK +aGK +aGK +aGK +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aaq +aaq +aaq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(119,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aaq +aac +aaU +ajG +afS +afq +afq +afq +afS +ash +afq +aiZ +ajD +akX +ann +afS +aqZ +arP +acV +arX +aui +acV +auP +avE +arL +avN +aop +aVy +bdj +aop +aqV +aDY +asV +aqe +aLG +aFM +aGg +aXh +atb +asN +awq +aJw +asu +aoJ +bcv +bfs +bgb +aoJ +beZ +bfq +aFM +aJt +aJt +aJt +aJt +aJt +aJt +aJt +aJt +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(120,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaq +abn +ajG +afS +aby +afq +afq +afS +ajc +ajx +alr +anD +akX +apl +afS +ara +arS +aon +auh +aun +aCa +auT +avI +arL +aqm +aop +aVy +aeZ +ata +aCI +aCR +aEh +aqe +aso +aFM +aJJ +aOg +atb +asY +axv +bcF +bdI +aoJ +beP +bdR +aBJ +aoJ +bbr +bcB +aAb +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +aNB +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(121,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +abn +ajG +afS +afp +afq +bfW +afS +ajd +ajx +alr +anD +akX +apF +acf +aro +arT +acV +arX +auo +acV +auP +avE +arL +aqm +aop +aVy +bdk +aop +aop +aop +ask +arK +bfu +aCh +aKl +aHw +atb +atb +atb +atb +atb +aoJ +aoJ +aoJ +aoJ +aoJ +bbv +bcC +aAb +adG +aOF +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(122,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +abn +ajG +afS +afS +afS +afS +afS +ajc +ajx +alr +anE +aoK +apG +afS +aqW +arX +acV +arX +acV +acV +avb +awu +arL +arZ +aop +asQ +auk +aEZ +auk +auk +avr +aso +aop +aFM +aGq +aHx +aLC +aLH +aLK +aPF +aSh +bcG +aTJ +aUB +aVd +baS +bbB +bcD +aAb +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(123,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +ajG +adG +adG +adG +ajG +afS +aje +ajF +alM +anM +aoO +apP +afS +arp +arX +atx +auj +acV +acV +avc +awN +acf +aCo +aAD +asG +aAD +ayg +aAR +aFa +aEx +aBd +aAR +aFM +aGG +aHA +aLD +aLI +aMg +aRm +aSl +aSl +aTS +aUT +aLI +baY +bbr +bcE +aAb +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(124,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aNM +aNM +aNM +aNW +ajG +afS +afS +afS +afS +afS +aoP +afS +afS +aqZ +acV +acV +acV +acV +acV +ave +arL +adG +azY +axQ +aAQ +aBC +ayg +aCW +aEn +aEM +aFD +aFR +aFM +aGI +aIj +aLE +aLE +aLE +aLE +aTc +aLE +aUg +aLE +aLE +aLE +bce +bfv +aAb +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(125,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +ajG +ajG +ajG +ajU +amu +amu +apd +ajG +arL +ars +arY +atz +aup +auK +auL +avf +arL +adG +azY +aAH +aBm +aBM +ayg +aCX +aEm +aEF +aFg +aGa +aFM +aFM +aIT +aHq +aHq +aHq +aRX +aTw +aTH +aUn +aHq +aHq +aHq +bgw +aAa +aAa +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(126,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aNM +aNM +aNW +amt +anO +aoR +atd +ajG +auR +aAh +aAh +aAh +aAh +aAh +aAh +aAh +axm +adG +azY +aAI +aBz +aBZ +aCp +aDC +aEm +aFb +aFE +aGc +aGj +aFM +aXS +aLF +aLJ +aMh +aJq +aTG +bcq +aMh +aJq +aWl +bcL +aMh +bfL +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(127,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +ajG +ajG +ajG +avk +ajG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +azY +aAJ +aBA +aCg +aCp +aDM +aEm +aFk +aFG +aEm +aHo +aFM +aFM +aAa +azX +azX +azX +azX +azX +azX +azX +azX +azX +azX +aAa +adG +aOF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(128,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aOt +adG +azY +aAK +aBA +aCk +aCp +aDX +aEm +aEN +aFB +aFH +aIk +aKp +aXi +azY +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(129,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +azY +aAP +aBl +aCC +aCp +aAK +aEm +aEm +aEm +aEm +aGJ +aGJ +aXV +azY +adG +aOF +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(130,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +aAC +aAR +aAR +aAR +ayg +aEk +aEL +aFl +aFl +aGe +aGe +aGe +aYN +azY +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(131,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +adG +adG +adG +adG +aAC +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +ayg +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(132,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aNM +aNM +aNM +aNW +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(133,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(134,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(135,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(136,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(137,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(138,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +"} +(139,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm index ace456fc7bc..8631533a7d5 100644 --- a/maps/tether/tether-05-station1.dmm +++ b/maps/tether/tether-05-station1.dmm @@ -5323,7 +5323,7 @@ /turf/simulated/floor/tiled, /area/gateway/prep_room) "ajo" = ( -/obj/structure/stairs/west, +/obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "ajp" = ( @@ -7948,6 +7948,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/engineering/hallway) +"aou" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled, +/area/engineering/workshop) "aov" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -7977,6 +7981,14 @@ }, /turf/simulated/wall/r_wall, /area/engineering/hallway) +"aoz" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled, +/area/engineering/foyer) +"aoA" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_one) "aoB" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -8007,6 +8019,10 @@ /obj/structure/table, /turf/simulated/floor/plating, /area/maintenance/abandonedlibrary) +"aoD" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor, +/area/vacant/vacant_restaurant_lower) "aoE" = ( /obj/random/junk, /obj/effect/decal/cleanable/cobweb, @@ -10693,10 +10709,6 @@ }, /turf/simulated/floor, /area/maintenance/station/spacecommandmaint) -"auk" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled, -/area/engineering/workshop) "aul" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central1{ dir = 4 @@ -13228,10 +13240,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/tether/station/stairs_one) -"ayy" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled, -/area/tether/station/stairs_one) "ayz" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 @@ -19366,10 +19374,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"bgF" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled, -/area/engineering/foyer) "bhc" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -20708,10 +20712,6 @@ }, /turf/simulated/floor, /area/vacant/vacant_restaurant_lower) -"bZT" = ( -/obj/structure/stairs/west, -/turf/simulated/floor, -/area/vacant/vacant_restaurant_lower) "bZZ" = ( /obj/structure/bed/chair, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -29668,8 +29668,8 @@ bZv bZv bZH bYP -bZT -bZT +aoD +aoD awu awu awu @@ -30497,7 +30497,7 @@ art avh aen atQ -auk +aou bZi aJx aJx @@ -31655,7 +31655,7 @@ aws fjd oFB axR -ayy +aoA aws bQa aws @@ -31797,7 +31797,7 @@ aws iIr lCi axR -ayy +aoA aws bQa aws @@ -32213,8 +32213,8 @@ aoJ ams aQX bYt -bgF -bgF +aoz +aoz aYg agU acp diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm index a3ac58a3640..c51acd24cd3 100644 --- a/maps/tether/tether-06-station2.dmm +++ b/maps/tether/tether-06-station2.dmm @@ -2481,7 +2481,7 @@ /turf/simulated/wall, /area/maintenance/evahallway) "dB" = ( -/obj/structure/stairs/north, +/obj/structure/stairs/spawner/north, /turf/simulated/floor/tiled, /area/tether/exploration/staircase) "dC" = ( @@ -2894,11 +2894,11 @@ /obj/effect/floor_decal/techfloor{ dir = 8 }, -/obj/structure/stairs/north, +/obj/structure/stairs/spawner/north, /turf/simulated/floor/bluegrid, /area/ai_upload) "el" = ( -/obj/structure/stairs/north, +/obj/structure/stairs/spawner/north, /turf/simulated/floor/bluegrid, /area/ai_upload) "em" = ( @@ -3100,7 +3100,7 @@ /obj/effect/floor_decal/techfloor{ dir = 4 }, -/obj/structure/stairs/north, +/obj/structure/stairs/spawner/north, /turf/simulated/floor/bluegrid, /area/ai_upload) "eB" = ( @@ -3615,14 +3615,9 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_upload) "fo" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled, +/area/security/brig/visitation) "fp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -3767,9 +3762,9 @@ /turf/simulated/floor/tiled, /area/tether/exploration/staircase) "fB" = ( -/obj/structure/stairs/south, +/obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled, -/area/security/brig/visitation) +/area/security/security_cell_hallway) "fC" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -5270,9 +5265,13 @@ /turf/simulated/floor/tiled, /area/tether/exploration/staircase) "hU" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1) "hV" = ( /turf/simulated/floor/tiled, /area/security/security_cell_hallway) @@ -9093,8 +9092,7 @@ /area/ai_upload_foyer) "nk" = ( /obj/structure/shuttle/engine/propulsion{ - dir = 8; - icon_state = "propulsion_l" + dir = 8 }, /turf/space, /turf/simulated/shuttle/plating/airless/carry, @@ -9239,13 +9237,6 @@ /turf/simulated/floor/plating, /area/storage/tech) "nx" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/large_escape_pod1) -"ny" = ( /obj/structure/shuttle/engine/propulsion{ dir = 8; icon_state = "propulsion_r" @@ -9253,6 +9244,10 @@ /turf/space, /turf/simulated/shuttle/plating/airless/carry, /area/shuttle/large_escape_pod1) +"ny" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_two) "nz" = ( /obj/machinery/light_switch{ dir = 8; @@ -9356,6 +9351,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/starboard) +"nK" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled/white, +/area/medical/surgery_hallway) "nM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -12368,10 +12367,6 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"un" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/tether/station/stairs_two) "uo" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -14255,7 +14250,7 @@ /turf/simulated/floor/tiled/white, /area/medical/biostorage) "xQ" = ( -/obj/structure/stairs/west, +/turf/simulated/sky/virgo3b/west, /turf/simulated/floor/tiled/white, /area/medical/biostorage) "xR" = ( @@ -15309,10 +15304,6 @@ }, /turf/simulated/floor/wood, /area/medical/surgery_hallway) -"Ak" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) "Al" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -27836,7 +27827,7 @@ af XR UT BV -fB +fo fX gw gw @@ -27978,7 +27969,7 @@ af bN ep BV -fB +fo fX gw gw @@ -28003,7 +27994,7 @@ rO sw tc sw -un +ny uP vn vN @@ -28145,7 +28136,7 @@ rP sw tc sw -un +ny uP vo eP @@ -29545,8 +29536,8 @@ cR aS gW gV -hU -hU +fB +fB aj ja kj @@ -30858,8 +30849,8 @@ ze zt zL xb -Ak -Ak +nK +nK AK Ba Bv @@ -35804,11 +35795,11 @@ hl DI RX DL +hU +nk +nk nk nx -nx -nx -ny oY sW ef @@ -35929,7 +35920,7 @@ ac ac dZ eA -fo +fS fS gr dZ

htwNl-$)x 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 Date: Sun, 21 Feb 2021 21:46:10 -0600 Subject: [PATCH 06/28] Add files via upload --- icons/obj/egg_open_vr.dmi | Bin 12917 -> 12219 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/egg_open_vr.dmi b/icons/obj/egg_open_vr.dmi index 2e21e6039dff9e3744b85b5bf159301ea7f4dbb5..56f34d2a8d2bca543aa3e3878c59ec54b492bf6a 100644 GIT binary patch literal 12219 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 From 3ba951c6efb08669f9b6f95b66322e7557d53ee5 Mon Sep 17 00:00:00 2001 From: Killian <49700375+VarkaSelyn@users.noreply.github.com> Date: Mon, 22 Feb 2021 07:03:39 +0000 Subject: [PATCH 07/28] Update ert.dm --- code/modules/clothing/spacesuits/void/ert.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/clothing/spacesuits/void/ert.dm b/code/modules/clothing/spacesuits/void/ert.dm index b9fe70383da..e15bf8e6898 100644 --- a/code/modules/clothing/spacesuits/void/ert.dm +++ b/code/modules/clothing/spacesuits/void/ert.dm @@ -130,24 +130,31 @@ armor = list(melee = 60, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 100, rad = 100) siemens_coefficient = 0.5 icon = 'icons/obj/clothing/hats_vr.dmi' + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_AUGMENTED) + flash_protection = FLASH_PROTECTION_MODERATE + plane_slots = list(slot_head) /obj/item/clothing/head/helmet/space/void/responseteam/command name = "Mark VII-C Emergency Response Team Commander Helmet" + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_CH_WANTED) /obj/item/clothing/head/helmet/space/void/responseteam/medical name = "Mark VII-M Emergency Medical Response Helmet" icon_state = "erthelmet_m" item_state = "erthelmet_m" + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_AUGMENTED) /obj/item/clothing/head/helmet/space/void/responseteam/engineer name = "Mark VII-E Emergency Engineering Response Helmet" icon_state = "erthelmet_e" item_state = "erthelmet_e" + flash_protection = FLASH_PROTECTION_MAJOR /obj/item/clothing/head/helmet/space/void/responseteam/security name = "Mark VII-S Emergency Security Response Helmet" icon_state = "erthelmet_s" item_state = "erthelmet_s" + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_WANTED,VIS_AUGMENTED,VIS_CLOAKED) /obj/item/clothing/head/helmet/space/void/responseteam/janitor name = "Mark VII-J Emergency Cleanup Response Helmet" From c3e7a3112bbbf7249701d53f9f674310cbd59324 Mon Sep 17 00:00:00 2001 From: Killian <49700375+VarkaSelyn@users.noreply.github.com> Date: Mon, 22 Feb 2021 07:06:37 +0000 Subject: [PATCH 08/28] Update ert.dm --- code/modules/clothing/spacesuits/void/ert.dm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/modules/clothing/spacesuits/void/ert.dm b/code/modules/clothing/spacesuits/void/ert.dm index e15bf8e6898..023bec9388f 100644 --- a/code/modules/clothing/spacesuits/void/ert.dm +++ b/code/modules/clothing/spacesuits/void/ert.dm @@ -131,12 +131,11 @@ siemens_coefficient = 0.5 icon = 'icons/obj/clothing/hats_vr.dmi' enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_AUGMENTED) - flash_protection = FLASH_PROTECTION_MODERATE plane_slots = list(slot_head) /obj/item/clothing/head/helmet/space/void/responseteam/command name = "Mark VII-C Emergency Response Team Commander Helmet" - enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_CH_WANTED) + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_CH_WANTED,VIS_AUGMENTED) /obj/item/clothing/head/helmet/space/void/responseteam/medical name = "Mark VII-M Emergency Medical Response Helmet" @@ -148,13 +147,12 @@ name = "Mark VII-E Emergency Engineering Response Helmet" icon_state = "erthelmet_e" item_state = "erthelmet_e" - flash_protection = FLASH_PROTECTION_MAJOR /obj/item/clothing/head/helmet/space/void/responseteam/security name = "Mark VII-S Emergency Security Response Helmet" icon_state = "erthelmet_s" item_state = "erthelmet_s" - enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_WANTED,VIS_AUGMENTED,VIS_CLOAKED) + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_WANTED,VIS_AUGMENTED) /obj/item/clothing/head/helmet/space/void/responseteam/janitor name = "Mark VII-J Emergency Cleanup Response Helmet" From a7b0c4af778b6ca70268424210dc5ddb07113174 Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Mon, 22 Feb 2021 11:06:23 -0500 Subject: [PATCH 09/28] Typo Fixy, Again Fixes double "the" in harvest failure message --- code/modules/mob/living/silicon/robot/robot_items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/robot_items.dm b/code/modules/mob/living/silicon/robot/robot_items.dm index 41a47b0e7e0..f3ffc2b9be9 100644 --- a/code/modules/mob/living/silicon/robot/robot_items.dm +++ b/code/modules/mob/living/silicon/robot/robot_items.dm @@ -171,7 +171,7 @@ else if(T.dead) //It's probably dead otherwise. T.remove_dead(user) else - to_chat(user, "Harvesting \a [target] is not the purpose of this tool. The [src] is for plants being grown.") + to_chat(user, "Harvesting \a [target] is not the purpose of this tool. The harvester is for plants being grown.") // A special tray for the service droid. Allow droid to pick up and drop items as if they were using the tray normally // Click on table to unload, click on item to load. Otherwise works identically to a tray. From da8c3e2c3ff5212460f86b45ae35d6599c582f55 Mon Sep 17 00:00:00 2001 From: Heroman Date: Tue, 23 Feb 2021 07:57:09 +1000 Subject: [PATCH 10/28] Fixes drone console not detecting drones outside its own z-level --- code/modules/mob/living/silicon/robot/drone/drone_console.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/drone/drone_console.dm b/code/modules/mob/living/silicon/robot/drone/drone_console.dm index 77486ecfffd..2fd79b49923 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_console.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_console.dm @@ -36,11 +36,13 @@ data["drones"] = list() for(var/mob/living/silicon/robot/drone/D in mob_list) + /* //VOREStation Removal - multiz lol if(D.z != z) continue + */ //VOREStation Removal - multiz lol if(D.foreign_droid) continue - + data["drones"].Add(list(list( "name" = D.real_name, "active" = D.stat != 2, From 15bb23c70c67e3de4cf880ff6caa66635db463b8 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Mon, 22 Feb 2021 20:32:11 -0800 Subject: [PATCH 11/28] Merge pull request #7923 from Atermonera/respawn_is_respawn Adds Respawn to allow ghosts to return to lobby so admins stop disabling respawn instead because SOMEONE, SOMEWHERE IS WRONG --- code/modules/mob/dead/observer/observer.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 13f794176d0..06c4b70062a 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -913,3 +913,8 @@ mob/observer/dead/MayRespawn(var/feedback = 0) to_chat(src, "(Click to re-enter)") if(sound) SEND_SOUND(src, sound(sound)) + +/mob/observer/dead/verb/respawn() + set name = "Respawn" + set category = "Ghost" + src.abandon_mob() \ No newline at end of file From f83dc7b5d72d4b0675f1df2260e94ebacfcaecf8 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Tue, 23 Feb 2021 14:22:13 -0800 Subject: [PATCH 13/28] Deletes the process scheduler. --- code/controllers/subsystems/ticker.dm | 3 +++ code/game/world.dm | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/code/controllers/subsystems/ticker.dm b/code/controllers/subsystems/ticker.dm index 0c626ec041b..20be2138c1b 100644 --- a/code/controllers/subsystems/ticker.dm +++ b/code/controllers/subsystems/ticker.dm @@ -183,11 +183,14 @@ var/global/datum/controller/subsystem/ticker/ticker if(adm["total"] == 0) send2adminirc("A round has started with no admins online.") +<<<<<<< HEAD /* supply_controller.process() //Start the supply shuttle regenerating points -- TLE // handled in scheduler master_controller.process() //Start master_controller.process() lighting_controller.process() //Start processing DynamicAreaLighting updates */ +======= +>>>>>>> 6cb0471... Merge pull request #7917 from MistakeNot4892/psched current_state = GAME_STATE_PLAYING Master.SetRunLevel(RUNLEVEL_GAME) diff --git a/code/game/world.dm b/code/game/world.dm index 5c5eaff9e5f..7c05a28ddd7 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -57,12 +57,17 @@ // Create robolimbs for chargen. populate_robolimb_list() +<<<<<<< HEAD //Must be done now, otherwise ZAS zones and lighting overlays need to be recreated. //createRandomZlevel() //VOREStation Removal: Deprecated master_controller = new /datum/controller/game_controller() Master.Initialize(10, FALSE, TRUE) +======= + master_controller = new /datum/controller/game_controller() + Master.Initialize(10, FALSE) +>>>>>>> 6cb0471... Merge pull request #7917 from MistakeNot4892/psched spawn(1) master_controller.setup() @@ -408,7 +413,10 @@ var/world_topic_spam_protect_time = world.timeofday to_world("Rebooting world immediately due to host request") else Master.Shutdown() //run SS shutdowns +<<<<<<< HEAD //processScheduler.stop() //VOREStation Removal +======= +>>>>>>> 6cb0471... Merge pull request #7917 from MistakeNot4892/psched for(var/client/C in GLOB.clients) if(config.server) //if you set a server location in config.txt, it sends you there instead of trying to reconnect to the same world address. -- NeoFite C << link("byond://[config.server]") From 0304fe9db64c0392d15eec10473b51d2db2beecc Mon Sep 17 00:00:00 2001 From: H0lySquirr3l <34927367+H0lySquirr3l@users.noreply.github.com> Date: Tue, 23 Feb 2021 17:45:40 -0600 Subject: [PATCH 14/28] Add files via upload --- maps/tether/tether-03-surface3.dmm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index d6f8865511a..cd79f9905ed 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -33769,10 +33769,10 @@ /obj/structure/table/marble, /obj/item/weapon/reagent_containers/glass/rag, /obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, -/obj/item/weapon/book/manual/barman_recipes, /obj/machinery/camera/network/civilian{ dir = 9 }, +/obj/item/weapon/book/manual/bar_guide, /turf/simulated/floor/lino, /area/crew_quarters/bar) "bgA" = ( @@ -33937,7 +33937,6 @@ /obj/machinery/camera/network/civilian{ dir = 4 }, -/obj/item/weapon/book/manual/bar_guide, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) "bgP" = ( From c6b757f5f6cd641e3187af254780163418bd5fca Mon Sep 17 00:00:00 2001 From: H0lySquirr3l <34927367+H0lySquirr3l@users.noreply.github.com> Date: Tue, 23 Feb 2021 17:47:38 -0600 Subject: [PATCH 15/28] Add files via upload --- code/game/objects/items/weapons/manuals_vr.dm | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/code/game/objects/items/weapons/manuals_vr.dm b/code/game/objects/items/weapons/manuals_vr.dm index a7753211d83..9eaaa56265f 100644 --- a/code/game/objects/items/weapons/manuals_vr.dm +++ b/code/game/objects/items/weapons/manuals_vr.dm @@ -75,61 +75,61 @@